ImageFeatureDetector icon indicating copy to clipboard operation
ImageFeatureDetector copied to clipboard

"uiSpinBoxOctaves":is not a member of "Ui::barFeaturesSift"

Open hub-wll opened this issue 5 years ago • 6 comments

In system window10, I used cmake3.15.1 to compiled this project, and then opened .sln on VS2017. Some issues appeared , how to deal with it quickly?

hub-wll avatar Mar 18 '20 02:03 hub-wll

I have also run into this problem. I temporarily fixed it by commenting all related to the error. But when I run the /bin/imagefeaturedetector, I have an error: Segmentation fault (core dumped)

ngthanhtin avatar Mar 19 '20 08:03 ngthanhtin

I have fixed the issue by changing main.cpp a little bit: ` QApplication app(argc, argv);

WindowMain mainWindow;
mainWindow.show();

// new WindowMain();
return app.exec();

` Hope it help !

ngthanhtin avatar Mar 19 '20 08:03 ngthanhtin

I changed the main.cpp according to your advise, also this program compiled successfully. But when I debug it on VS2017, there is still the same error that "mCurrentFeatureAction = mHarrisAction;" in windowMain.cpp caused exception.
The detail of this exceptioin is that exception raised at 0x00007FFA53F3570A (qt5widgetsd.dll) (in imagefeaturedetector.exe) : 0xC0000005: access conflict occurred while reading position 0xFFFFFFFFFFFFFFFF. I mouse over the error statement, the object "mHarrisAction" show that no information available and no symbols have been loaded for qt5widgetsd.dll.

hub-wll avatar Mar 20 '20 05:03 hub-wll

Maybe qt5 on windows lacks some package. Actually, I have run on Ubuntu 18.04.

ngthanhtin avatar Mar 20 '20 06:03 ngthanhtin

Thanks, I will try it again.

hub-wll avatar Mar 20 '20 09:03 hub-wll

Thanks, I will try it again. Is your problem solved, I also encountered the same problem.Can you give me some suggestions?

North2Tree avatar Oct 07 '21 14:10 North2Tree