PROGRAM (92) 썸네일형 리스트형 Qt - VisualStudio 2019 한글깨짐 예제 코드 하나 추가 (SpinBox 예제) QString str; str.append(QString::fromLocal8Bit("당신의 나이는 ")); //str.append(" \n"); str.append(QString("%1").arg(ui.spinBox->cleanText())); str.append(QString::fromLocal8Bit("살 입니다.")); ui.label->setText(str); https://flower0.tistory.com/221 Qt 한글깨짐 수정방법 | Utf8 unicode 인코딩 | 예제 코드 결과 전 : 한글 깨짐 결과 후 : 한글 깨짐 해결 해결방법 QString::fromLocal8bit(str) 해결 전 코드 str.append(QString("채널 .. Qt - SpinBox keyboard +/- 는 1씩 증가 PgUp / PgDn 은 10씩 증가 .h #pragma once #include #include "ui_QtWidgetsApp.h" #include class QtWidgetsApp_1 : public QDialog { Q_OBJECT public: QtWidgetsApp_1(QWidget *parent = Q_NULLPTR); private: Ui::QtWidgetsApp_1Class ui; public slots: void btn_run_clicked(); }; - spinbox값을 label에 표시하기 위한 명령어 ui.lbl_age->setText(ui.spinbox_age->cleanText()); .cpp #include "QtWidgetsApp.h" Q.. Qt - Combobox Form files .h class QtWidgetsApp_1 : public QDialog { Q_OBJECT public: QtWidgetsApp_1(QWidget *parent = Q_NULLPTR); private: Ui::QtWidgetsApp_1Class ui; public slots: void btn_run_clicked(); }; .cpp #include "QtWidgetsApp.h" static int cnt = 0; QtWidgetsApp_1::QtWidgetsApp_1(QWidget *parent) : QDialog(parent) { ui.setupUi(this); connect(ui.btn_run, SIGNAL(clicked()), this, SLOT(btn_run_clicked().. Qt - PushButton myWidget01.h -> slots: 부분을 추가 #pragma once #include #include "ui_myWidget01.h" class myWidget01 : public QDialog { Q_OBJECT public: myWidget01(QWidget *parent = Q_NULLPTR); private: Ui::myWidget01Class ui; public slots: void run_btn_1(); }; myWidget01.cpp #include "myWidget01.h" static int cnt = 0; static int cnt2 = 0; myWidget01::myWidget01(QWidget *parent) : QDialog(parent) { ui.setupUi(this);.. OpenCV-Android-카메라 띄우기 webnautes님의 블로그 및 유튜브를 참조하였음 https://webnautes.tistory.com/1054?category=704164 Android NDK + CMake + OpenCV 카메라 예제 및 프로젝트 생성방법(Android Camera Example with NDK, OpenCV, CMake ) NDK를 지원하는 안드로이드 프로젝트를 생성한 후, OpenCV 라이브러리를 추가하여 사용하는 방법을 설명합니다. 간단한 예제로 OpenCV Java API에서 캡처한 영상을 OpenCV C++ API에서 그레이스케일 영상 webnautes.tistory.com https://www.youtube.com/watch?v=oFFnyJAIJp8&list=PLwfJJiO20qkB7EhtRITL3znm.. ndk-bundle did not have a source.properties file https://stackoverflow.com/questions/64372383/ndk-at-library-android-sdk-ndk-bundle-did-not-have-a-source-properties-file NDK at ~/Library/Android/sdk/ndk-bundle did not have a source.properties file I have updated Android Studio to 4.1 in Macbook but not able to run app after updating. It is giving following error Execution failed for task ':app:stripDebugDebugSymbols'. NDK at ~/Library/Androi.... 3. PyQt5 시작하기 - Designer + pyuic5 이용하기 보호되어 있는 글입니다. Import PyQt5 could not be resolved 에러 해결하기 1. VSCode에서 Anaconda + PyQt5 사용하여 코딩 중 - 좀전까지 돌아가던 코드가 갑자기 에러로 동작하지 않음 ㅠㅠ - 조금전 다시 돌리니 일단은 돌아감 - 문제는 여전히 그대로 있음 2번은 문제 해결 않됨 : 2번의 빨간색만 확인하고 3번으로 넘어가기를 추천 2-1. 아나콘다 Prompt 실행 2-2. PyQt5 설치 : 우선 PyQt5가 설치 되어 있는지 확인하고 설치가 않되어 있으면 설치 설치된 pip list확인 : 설치된 것 가운데 PyQt5 가 있는지 확인 (base) C:\Users\userName> python -m pip list - 설치가 안되어 있으면 PyQt5 설치 (설치되어 있으면 일단 3번으로 고고) (base) C:\Users\userName> pip insta.. 이전 1 2 3 4 5 6 7 ··· 12 다음