element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      • Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum Raspberry Pi + Webcam + Python + OpenCV = Weird Problems + No Solutions
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 11 replies
  • Subscribers 674 subscribers
  • Views 1870 views
  • Users 0 members are here
  • raspberry_pi
Related

Raspberry Pi + Webcam + Python + OpenCV = Weird Problems + No Solutions

Former Member
Former Member over 12 years ago

Now,

 

EDIT: Main goal, capture an image, wait some time, capture another image, add the two images together and show it :END EDIT

 

I run the program and can see the webcam feed, I then press a key capturing an image as img1, then again but as img2, and again img3. Now when the final image displays (img2+img3) it just shows img3 added to itself, i.e. as though I coded Add(img3,img3,img1). I have also tried AddWeighted and AND functions.

 

I have tried and tried and cannot find the problem, is it the Add function that is not reading img2, or could img2 not be saved properly? or what is going on!!

 

Any help would be great,

 

Cheers,

 

Dan.

 

 

# Daniel Myers
# cvTest.py
# 18 Feb 13

 

from cv import *

 

SIZE=(HEIGHT,WIDTH)=(640,480) # Image capture size
CAMERA_INDEX=-1 # -1 means any camera attached

 

def TakePic(cam):
    NamedWindow('cvTest',CV_WINDOW_AUTOSIZE)
    while True:
        img=QueryFrame(cam)
        ShowImage('cvTest',img)
        k=WaitKey(2)
        if k>=0:
            return img

 

cam=CaptureFromCAM(CAMERA_INDEX) # Initializes capturing a video from a camera
SetCaptureProperty(cam,CV_CAP_PROP_FRAME_WIDTH,WIDTH) # Set the capture image width
SetCaptureProperty(cam,CV_CAP_PROP_FRAME_HEIGHT,HEIGHT) # Set the capture image height

 

img1=TakePic(cam)
ShowImage('img1',img1)

 

img2=TakePic(cam)
ShowImage('img2',img2)

 

img3=TakePic(cam)
ShowImage('img3',img3)

 

AddWeighted(img2,0.4,img3,0.6,20,img1)
ShowImage('img2+img3',img1)

 

k=WaitKey(100000)
DestroyAllWindows()
del(cam)

  • Sign in to reply
  • Cancel
Parents
  • Former Member
    Former Member over 12 years ago

    Wrote two functions (below). I capture an image, convert to mat, capture an image, convert to mat, add the two mats, convert to image and show..... now this works, it shows overlapped images however this is awful coding and terribly slow, but proves the Add function works, and the theory is there there is jsut something wrong with the IplImage's

     

    def Img2Mat(img):
         width=img.width
         height=img.height
         depth=img.depth
         mat=CreateMat(height,width,depth)
         for w in range(0,width):
              for h in range(0,height):
                   value=Get2D(img,h,w)
                   Set2D(mat,h,w,value)

         return mat

    def Mat2Img(mat):
         width=mat.cols
         height=mat.rows
         size=(width,height)
         img=CreateImage(size,8,3)
         for w in range(0,width):
               for h in range(0,height):
                    value=Get2D(mat,h,w)
                    Set2D(img,h,w,value)
         return img

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • Former Member
    Former Member over 12 years ago

    Wrote two functions (below). I capture an image, convert to mat, capture an image, convert to mat, add the two mats, convert to image and show..... now this works, it shows overlapped images however this is awful coding and terribly slow, but proves the Add function works, and the theory is there there is jsut something wrong with the IplImage's

     

    def Img2Mat(img):
         width=img.width
         height=img.height
         depth=img.depth
         mat=CreateMat(height,width,depth)
         for w in range(0,width):
              for h in range(0,height):
                   value=Get2D(img,h,w)
                   Set2D(mat,h,w,value)

         return mat

    def Mat2Img(mat):
         width=mat.cols
         height=mat.rows
         size=(width,height)
         img=CreateImage(size,8,3)
         for w in range(0,width):
               for h in range(0,height):
                    value=Get2D(mat,h,w)
                    Set2D(img,h,w,value)
         return img

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube