Unwanted interface via imshow()
Hi. I just installed opencv on ubuntu and when i created window with imshow() there are buttons and statistik. I was first surprised becuse in tutorials i have not seen these. Is there way to get rid of them? Other function which show just the image i want to? Or should i get used to them?
Edit: adding code and picture
code is simple:
#include<opencv2/opencv.hpp>
using namespace cv;
int main(){
Mat img = imread("/home/test.jpeg",CV_LOAD_IMAGE_GRAYSCALE);
imshow("test",img);
waitKey(0);
return 0;
}
window with picture looks like this:
Could you please post the _complete_ code you used and if possible a screenshot please? A priori, it seems like your code defines other behaviour before showing the image... Hard to tell without the code though