Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~786 People Reached
Favorite Forums
Favorite Tags
c++ x 3
Member Avatar for ejohns85

Hello, I am trying to capture a video stream from a webcam, and simultaneously display the frames, using OpenCV. Previously, I have captured one image, and then at the end of my program displayed the image in a window, which works fine. However, when I try to capture a sequence …

Member Avatar for josephbeluan
0
462
Member Avatar for ejohns85

Hello, I am using the computer vision libraries in OpenCV - if anybody is familiar with these then maybe you can help ;) I am trying to estimate the fundamental matrix between two images, using cvFindFundamentalMat(). I have created two matrices representing points in the left (points1) and right (points2) …

Member Avatar for daviddoria
0
151
Member Avatar for ejohns85

Hello, I'm a bit of a newbie here, so would appreciate some help on this one! I want to write a program that will display a map on a windows form. The map is built up of a 2-dimensional array of objects (either Land or Water), of size [1000, 1000], …

Member Avatar for LizR
0
76
Member Avatar for ejohns85

Hello, I am trying to create a basic war game. I have two classes, called Army, and Unit. Army contains an array of 10 Units: [code] public class Army { public Unit[] units; public Army() { units = new Unit[10]; } } [/code] When my program runs, an Army class …

Member Avatar for LizR
0
97