Giter Site home page Giter Site logo

Comments (6)

Dovyski avatar Dovyski commented on May 28, 2024

Thank you for using cvui and reporting problems (particularly being your first time using it)! There is nothing wrong with your code, so this issue must be a cvui bug. I'll check on that.

from cvui.

prabhakarmp avatar prabhakarmp commented on May 28, 2024

Hi

There is some problem in coding.

please check below code

#include <opencv2/opencv.hpp>
#include "opencv2/imgproc/imgproc.hpp"

#define CVUI_IMPLEMENTATION
#include "cvui.h"


using namespace cv;

int main() {

	// Create a frame where components will be rendered to.
	cv::Mat frame = cv::Mat(250, 500, CV_8UC3);

	cvui::init("test");
	
	// create a trackbar
	int bigN = 6;
	bool checked = false;
	while (true) {
		// Fill the frame with a nice color
		frame = cv::Scalar(49, 52, 49);

		
		cvui::trackbar(frame, 110, 80, 250, &bigN, (int)2, (int)15);

		
		cvui::checkbox(frame, 90, 50, "Example checkbox", &checked);

		if (cvui::button(frame, 110, 150, "Find images!")) {
			printf("clicked\n");
		};

		cvui::update("test");

		// Update cvui stuff and show everything on the screen
		cv::imshow("test", frame);


		if (cv::waitKey(1) == 27) {
			break;
		}

		
	}

	return 0;
}

from cvui.

Dovyski avatar Dovyski commented on May 28, 2024

@prabhakarmp can you describe a bit better what is wrong with your code, please? The UI components are not working or anything different?

from cvui.

prabhakarmp avatar prabhakarmp commented on May 28, 2024

@Dovyski

int bigN = 6;
bool checked = false;

These variables are declared as local variables which needs to be Global variable.

Since it is declared as local variables, UI results are not impacted because every time these variables getting updated with declared values.

Actually UI result will be there and it is valid till end of that cycle only. Suppose if we give big delay we can see the difference. And then in next cycle it will go to actual value what we had declared.

from cvui.

allenmqcymp avatar allenmqcymp commented on May 28, 2024

@prabhakarmp thanks! I do realize my mistake now. Closing this thread because the issue was due to my own bug and not CVUI's

from cvui.

Dovyski avatar Dovyski commented on May 28, 2024

Thank you for the help, @prabhakarmp! And I am glad @allenmqcymp 's code is working now. All good.

from cvui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.