OPENCV 2.3.1 windows mingw lib (Bug #1675)
Description
I use a simple code which show an image 100X100 contains zeros
compiler : devc++
opencv 2.3.1 :
using build\x86\mingw\lib and bin
imshow function crashs the application
and return error in highgui dll file
opencv 2.3.0:
using build\x86\mingw\lib and bin
works fine
Associated revisions
Merge pull request #1675 from krodyush:opencl-optimization
History
Updated by Alexander Shishkov almost 13 years ago
- Target version deleted ()
- Category set to build/install
Updated by Alexander Shishkov almost 13 years ago
- Priority changed from Normal to High
Updated by Alexander Shishkov almost 13 years ago
Can't reproduce the problem on trunk. I used last MinGW release (gcc 4.6.1), Windows 7 x64 and the following code
1int main()
2{
3 Mat a(100,100,CV_8U, Scalar::all(0));
4 imshow("aa",a);
5 waitKey(0);
6 return 0;
7}
- Status changed from Open to Done
- Assignee set to Alexander Shishkov
Updated by Alexander Shishkov almost 13 years ago
- Status changed from Done to Cancelled
Updated by Alexander Shishkov almost 13 years ago
- Target version set to 2.4.0