|
|||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||
| [ ID = 1710 ] | Dr. Eric Petajan |
|---|---|
| Name | Petajan, Dr. Eric |
| Job Title | Founder and Chief Scientist |
| Organisation | face2face animation |
| Address | 2 Kent Place Blvd |
| Postal Code | 07901 |
| City | Summit, NJ |
| Country | United States |
| Phone | + +001 908-598-7460 x5803 |
| Fax | + +001 908-598-1965 |
| Mobile | + +001 908-399-5750 |
| eric_(on)_f2f-inc.com [@ replaced for spam protection] | |
| Organisation URL | http://www.f2f-inc.com |
| Personal URL | |
| Membership | |
| Languages | English |
| Specialism | face animation
MPEG-4 MPEG-4 Face and Body Animation (FBA) Mobile platforms Facial motion capture video coding MPEG-2 HDTV Biometrics 2D/3D Graphics Hardware architectures Signal processing Software engineering Data visualization Video processing Character Animation |
| Photograph | Description or CV |
![]() |
|
|
|
Last update: 2004-03-17 06:12:30 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |