Video Analysis for Browsing and Printing


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Video Analysis for Browsing and Printing
# 1  
Old 12-20-2008
Video Analysis for Browsing and Printing

HPL-2008-215 Video Analysis for Browsing and Printing - Lin, Qian; Zhang, Tong; Chen, Mei; Deng, Yining; Atkins, Brian
Keyword(s): video mining, video printing, user intent, video panorama, video keyframe, video superresolution
Abstract: More and more home videos have been generated with the ever growing popularity of digital cameras and camcorders. In many cases of home video, a photo, whether capturing a moment or a scene within the video, provides a complementary representation to the video. In this paper, a complete solution of ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Browsing to files under cursor

hi all, I am using cntrl w f for this But now the new file is displayed in half of the screen...and the old file in the other half... how can ichange this default behaviour ... say for eg:80% to 1 file and remaining 20 % to the other file.... (4 Replies)
Discussion started by: dll_fpga
4 Replies

2. UNIX for Advanced & Expert Users

Video Cards :: Video Memory Intercept and Redirect

I need a broad spectrum understanding on this subject, and any help would be greatly appreciated. First of all, as I understand it... The way the video hardware works is the CPU sends information about input and possible changes to the display, the video card receives these changes, makes the... (2 Replies)
Discussion started by: ciNG
2 Replies

3. Solaris

Internet browsing on Solaris 10?

Hello sir, Can any one guide step by step way of configuration for internet browsing on solaris 10 using BSNL broadband connection in brief way about which configuartion file to edit etc. Regards, Amar (1 Reply)
Discussion started by: amarnathbasis8
1 Replies

4. Shell Programming and Scripting

web browsing from shell

hi mates Im new at this forums so hello :D I was wondering if it is possible to enter a web page from the shell and maybe retrieving some info from it tnx in advance (3 Replies)
Discussion started by: smoscar_01
3 Replies

5. Linux

Squid Browsing problem

Configured Squid2.0 on linux9. Browsing is very slow in client side. takes atleast 1min to open the page. can anybody tell me what to do Thaks in Advance (0 Replies)
Discussion started by: teenasuresh
0 Replies

6. Post Here to Contact Site Administrators and Moderators

Thread browsing during search

Hi Mods, Next Thread link available at the bottom, doesn't seem to be working accurately during a search, it goes to nextnewest thread relative to the thread we are viewing. Hope this can be fixed. Regards, Tayyab (4 Replies)
Discussion started by: tayyabq8
4 Replies

7. UNIX for Dummies Questions & Answers

apache directory browsing

How do i prevent clients from browsing directory structures if there is no index.html in a directory? For example, lets say that i dynamically create directories on in my doc root of an apache based web server. I know if i type the url and there is no index or default page in there, then apache... (1 Reply)
Discussion started by: ezekiel61
1 Replies
Login or Register to Ask a Question
XvPutVideo(3)						     Library Functions Manual						     XvPutVideo(3)

Name
       XvPutVideo - write video into a drawable

Syntax
       #include <X11/extensions/Xvlib.h>

       XvPutVideo(Display *dpy, XvPortID port, Drawable d, GC gc,
		  int vx, int vy, unsigned int vw, unsigned int vh,
		  int dx, int dy, unsigned int dw, unsigned int dh);

Arguments
       dpy	      Specifies the connection to the X server.

       port	      Defines the port from which to get video.

       d	      Defines the drawable (window) into which video is to be written.

       gc	      Defines the graphical context.  GC components are: subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask.

       vx,vy,vw,vh    Define  the  size  and  location	of  the source (video) region to be written.  vx and vy define the upper-left pixel of the
		      region. vw and vh define the width and height, in pixels, of the region.

       dx,dy,dw,dh    Define the location and size of the destination (drawable) region into which the video image is written.	dx and	dy  define
		      the upper-left pixel of the region.  dw and dh define the width and height, in pixels, of the region.

Description
       XvPutVideo  writes  video  into a drawable.  The position and size of the source (video) rectangle is specified by vx, vy, vw, and vh.  The
       position and size of the destination (drawable) rectangle is specified by dx, dy, dw, and dh.

       Video data is clipped to the bounds of the video encoding, scaled to the requested drawable region size (or the closest size supported) and
       clipped to the bounds of the drawable.

       If  video is successfully initiated, an XvVideoNotify event with detail XvStarted is generated for the drawable.  If the port is already in
       use, its video is preempted, and if the new drawable is different than the old, an XvVideoNotify event with detail XvPreempted is generated
       for  the old drawable.  If the port is grabbed by another client, this request is ignored, and an XvVideoNotify event with detail XvBusy is
       generated for the drawable. If the port is not receiving a valid video signal or if the video signal is interrupted while video is active a
       VideoNotify event with detail XvHardError is generated for the drawable.

Returned Values
       [Success]
	       Returned if XvPutVideo(3) completed successfully.

       [XvBadExtension]
	       Returned if the Xv extension is unavailable.

       [XvBadAlloc]
	       Returned if there were insufficient resources to process the request.

Diagnostics
       [XvBadPort]
	       Generated if the requested port does not exist.

       [BadDrawable]
	       Generated if the requested drawable does not exist.

       [BadGC] Generated if the requested graphics context does not exist.

       [BadAlloc]
	       Generated if there were insufficient resources to process the request.

See Also
       XvPutStill(3), XvGetVideo(3), XvVideoNotify(3)

X Version 11							    libXv 1.0.4 						     XvPutVideo(3)