You have at least one (it's me
You le_stitching.pb example is very impressive! I will take photos over the weekend to experiment more.
Good luck!
Just a minor error on the link that causes a 404Some setting to be aware of (Feature Detection and Description):
Code: Select all
*image.IplImage = cvQueryFrame(*capture)     ; getting  image from the webcam
...
If *image
  *mat.CvMat = cvEncodeImage(".jpg", *image, 0)
  Result = CatchImage(1, *mat\ptr)        
  *imgbuf = EncodeImage(1, #PB_ImagePlugin_JPEG);
  bufsize = MemorySize(*imgbuf)
  
  If OpenDatabase(0, DatabaseFile, "", "")                   
    SetDatabaseBlob(0, 0, *imgbuf, bufsize)
    Result = CheckDatabaseUpdate(0, "INSERT INTO ...")
    If Result <> 0
      ...
    Else
      ...      
    EndIf  
  EndIf
  ...  
EndIfIt's done the same way as with the cvSaveImage Function, the new example should give you a clearer picture (ignore the pun)jpeg compression level is too high. I don't know how to regulate the compression level