Skip to main content
Visitor II
August 25, 2003
Question

about stpckit samples

  • August 25, 2003
  • 6 replies
  • 1131 views
Posted on August 25, 2003 at 07:33

about stpckit samples

    This topic has been closed for replies.

    6 replies

    dqzhangpAuthor
    Visitor II
    August 4, 2003
    Posted on August 05, 2003 at 00:47

    stpckit/project/vid3buf : backmotion

    stpckit/samples/vidfull : motion object become blur

    stpckit/samples/vidhalf: the video quality is bad

    how can I implement high quality video_overly.
    Visitor II
    August 5, 2003
    Posted on August 05, 2003 at 07:26

    What do you mean by backmotion? If your video input is interlaced, the vid3buf example is supposed to provide the best quality for a full hardware solution. It use hardware interpolation to display the missing lines of the interlaced picture. If you would like a better quality, you will need to process images interpolation by software but the CPU is not enough powerful for this type of algorithm.

    Farfalla
    dqzhangpAuthor
    Visitor II
    August 5, 2003
    Posted on August 05, 2003 at 10:45

    The moving object displayed using vid3buf is not smooth,

    the moving object will halt,

    I means that backmotion
    Visitor II
    August 13, 2003
    Posted on August 13, 2003 at 07:16

    vid3buf is supposed to be smooth and shouldn't have this effect. If you would like the best quality, I think you should concentarte on understanding why vid3buf is not working correctly.

    Farfalla

    Visitor II
    August 13, 2003
    Posted on August 13, 2003 at 12:34

    Hello,

    just one question: do you run the samples on STPC Atlas or Consumer II or anything else?

    I have checked the source code and it needs some changes in the vid3buf.c file to work on Atlas (and only this one):

    replace #include ''saa.h'' by #include ''vpx.h''

    replace HWSAA_Init(.....) by HWVPX_Init(HWVPX_VIN2, HWVPX_FORMAT_PAL).

    Maybe you will have to choose other values for the two parameters of HWVPX_Init, depending on your hardware configuration.

    Hope the video will look better now...

    --
    dqzhangpAuthor
    Visitor II
    August 25, 2003
    Posted on August 25, 2003 at 07:33

    the problem is the input video, thanks farfalla, thanks fab