forked from opencv/opencv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Evgeny Talanin
committed
Oct 12, 2012
1 parent
83799d6
commit 2e7656d
Showing
7 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -307,7 +307,9 @@ enum | |
|
||
CV_CAP_XIAPI =1100, // XIMEA Camera API | ||
|
||
CV_CAP_AVFOUNDATION = 1200 // AVFoundation framework for iOS (OS X Lion will have the same API) | ||
CV_CAP_AVFOUNDATION = 1200, // AVFoundation framework for iOS (OS X Lion will have the same API) | ||
|
||
CV_CAP_GIGANETIX = 1300 // Smartek Giganetix GigEVisionSDK | ||
}; | ||
|
||
/* start capturing frames from camera: index = camera_index + domain_offset (CV_CAP_*) */ | ||
|
@@ -454,6 +456,15 @@ enum | |
CV_CAP_PROP_IOS_DEVICE_FLASH = 9003, | ||
CV_CAP_PROP_IOS_DEVICE_WHITEBALANCE = 9004, | ||
CV_CAP_PROP_IOS_DEVICE_TORCH = 9005 | ||
|
||
// Properties of cameras available through Smartek Giganetix Ethernet Vision interface | ||
/* --- Vladimir Litvinenko ([email protected]) --- */ | ||
,CV_CAP_PROP_GIGA_FRAME_OFFSET_X = 10001, | ||
CV_CAP_PROP_GIGA_FRAME_OFFSET_Y = 10002, | ||
CV_CAP_PROP_GIGA_FRAME_WIDTH_MAX = 10003, | ||
CV_CAP_PROP_GIGA_FRAME_HEIGH_MAX = 10004, | ||
CV_CAP_PROP_GIGA_FRAME_SENS_WIDTH = 10005, | ||
CV_CAP_PROP_GIGA_FRAME_SENS_HEIGH = 10006 | ||
}; | ||
|
||
enum | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters