mirror of
https://github.com/zebrajr/opencv.git
synced 2025-12-06 12:19:50 +01:00
fixed not initialized nv12_cpu_copy surface, remove odd code
This commit is contained in:
parent
157c94c03e
commit
57bff43aec
|
|
@ -111,6 +111,7 @@ public:
|
|||
|
||||
m_pSurfaceRGBA = 0;
|
||||
m_pSurfaceNV12 = 0;
|
||||
m_pSurfaceNV12_cpu_copy = 0;
|
||||
|
||||
D3D11_TEXTURE2D_DESC desc_rgba;
|
||||
|
||||
|
|
|
|||
|
|
@ -175,10 +175,10 @@ static const char* keys =
|
|||
template <typename TApp>
|
||||
int d3d_app(int argc, char** argv, std::string& title)
|
||||
{
|
||||
cv::CommandLineParser parser(argc, argv, keys); \
|
||||
bool useCamera = parser.has("camera"); \
|
||||
string file = parser.get<string>("file"); \
|
||||
bool showHelp = parser.get<bool>("help"); \
|
||||
cv::CommandLineParser parser(argc, argv, keys);
|
||||
bool useCamera = parser.has("camera");
|
||||
string file = parser.get<string>("file");
|
||||
bool showHelp = parser.get<bool>("help");
|
||||
|
||||
if (showHelp)
|
||||
help();
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user