https://youtu.be/KfY6DqWtcqs?list=PLxU-iZCqT52Cmj47aKB1T-SxI33YL7rYS

위의 영상에 나오는 코드 따라해봄

 

UI가 XML로 되어 있는 것 빼고는 아직까지 C#과 동일

 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace Wpf5
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {

        BackgroundWorker worker;

        int sum = 0;

        public MainWindow()
        {
            InitializeComponent();
        }

        protected override void OnInitialized(EventArgs e)
        {
            base.OnInitialized(e);

            //Progress Changed 이벤트 발생 여부
            //작업취소 가능 여부
            worker = new BackgroundWorker()
            {
                WorkerReportsProgress = true,
                WorkerSupportsCancellation = true,
            };

            worker.DoWork += Worker_DoWork;

            worker.ProgressChanged += Worker_ProgressChanged;

            worker.RunWorkerCompleted += Worker_RunWorkerCompleted;

            MessageBox.Show("초기화");
        }

        private void Worker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
        {
            if (e.Cancelled) MessageBox.Show("작업 취소");
            else if (e.Error != null) MessageBox.Show("에러 발생..." + e.Error);
            else
            {
                lblSum.Content = ((int)e.Result).ToString();
                MessageBox.Show("작업완료");
            }
        }

        private void Worker_ProgressChanged(object sender, ProgressChangedEventArgs e)
        {
            progressBar.Value = e.ProgressPercentage;
        }

        private void Worker_DoWork(object sender, DoWorkEventArgs e)
        {
            int count = (int)e.Argument;

            for(int i=0; i<=count; ++i)
            {
                if (worker.CancellationPending)
                {
                    e.Cancel = true;
                    return;
                }
                else
                {
                    Thread.Sleep(1000);
                    Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Normal,
                        (ThreadStart)delegate ()
                        {
                            if(i%2 == 0)
                            {
                                sum += i;
                                e.Result = sum;
                                lstNumber.Items.Add(i);
                            }
                        });

                    worker.ReportProgress(i);
                }
            }

        }

        private void btnStart_Click(object sender, RoutedEventArgs e)
        {
            if(worker.IsBusy == true)
            {
                MessageBox.Show("작업이 진행중입니다");
            }
            else
            {
                int num = 0;
                if (int.TryParse(txtNumber.Text, out num) == false)
                {
                    MessageBox.Show("숫자를 입력하세요");
                    return;
                }

                progressBar.Maximum = num;
                lstNumber.Items.Clear();
                worker.RunWorkerAsync(num);
            }
        }

        private void btnCancel_Click(object sender, RoutedEventArgs e)
        {
            worker.CancelAsync();
        }
    }
}

 

'기타' 카테고리의 다른 글

golang <-> javascript json통신  (0) 2022.01.27
go언어 - Cross Compile (Windows -> Linux Arm)  (0) 2022.01.25
[javascript] 벽돌깨기 게임  (0) 2022.01.14
go언어 따라해보기(3) - slice  (0) 2021.12.13
go - web 따라해보기(1)  (0) 2021.12.12
plugins {
    id 'com.android.application'
    id 'kotlin-android'
}

android {
    compileSdk 31

    defaultConfig {
        applicationId "com.hdongle.android.hello"
        minSdk 21
        targetSdk 31
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    kotlinOptions {
        jvmTarget = '1.8'
    }
}

dependencies {

    implementation 'androidx.core:core-ktx:1.7.0'
    implementation 'androidx.appcompat:appcompat:1.4.1'
    implementation 'com.google.android.material:material:1.5.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
    testImplementation 'junit:junit:4.+'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

* Android

 - compileSdkVersion : Gradle이 앱을 컴파일 하기 위해 사용해야 하는 Android API 레벨 지정

 - defaultConfig.applicationId : 패키지를 게시할때 식별하기 위한 속성. /

 - defaultConfig.minSdkVersion : 앱을 실행하는데 필요한 최소 API 레벨

 - defaultConfig.targetSdkVersion : 앱 구현에 사용되는 API 레벨

 - defaultConfig.versionCode : 앱의 버전 정의

 - defaultConfig.versionName : 앱의 버전 이름 정의 

 - defaultConfig.testInstrumentationRunner : 기본테스트 계측 실행기 설정

 

* dependency

  - androidx.appcompat:appcompat : AppCompat 라이브러리, 하위버전에서도 최신 버전의 UI를 지원하기 위해 사용

  - androidx.constraintlayout:constraintlayout : ConstraintLayout은 멀티 해상도를 좀 더 쉽게 지원하기 위해 추가된 layout

 

* 안드로이드 프로젝트는 '코드, 리소스, 매니페스트, 빌드 스크립트' 등으로 이루어짐

* 코드 : app / java

* 리소스 : app / res, 화면 레이아웃, 아이콘 이미지, 문자열

* AndroidManifest.xml : 안드로이드 시스템이 알아야 하는 필수 정보, application 권한 정보, Activity 정보 등

* 빌드 스크립트 : 앱설정(버전코드, 최소 sdk 버전), 의존 라이브러리

 

1. https://xavysp.github.io/MBIPED/ 사이트에 들어가서 아래의 링크를 눌러서 BIPED.zip, BIPEDv2.zip 을 다운 받는다

 

2. 1번의 사이트에서 위로 더 스크롤한 뒤, 아래의 버튼을 눌러서 github로 진입한다

3. 콘솔을 구동하여 위의 github 를 다운받는다

4. 아래의 명령어로 imutil 설치

pip install imutil

 

5. 다운 받은 파일 BIPED.zip을 d:\Dataset폴더에 해제한다

 

6. 3번에서 다운 받은 github로 들어가서 main.py를 다음과 같이 수정한다

 

7. 다음과 같이 main.py를 구동하면 augmentation을 시작한다

 

* docker는 attach 명령어를 사용해서 호스트PC -> 도커 연결 가능

* host에서 도커 컨테이너 안에 명령을 실행하는 명평어는 exec이다

* exec명령어와 -i, -t 옵션을 사용해야 입력이 가능하고 결과를 확인할 수 있다

$ docker exec it nginx /bin/bash

  1) docker exec : 컨테이너 내부에 명령을 실행

  2) -i(interfactive) : 표준 입력 활성화(attach 안되어 있어도 명령어 입력 가능)

  3) -t(tty) : 리눅스 쉘이 표시됨

 

* index.html을 찾아본다

find / -name index.html 2>/dev/null

  - 2>/dev/null : 정상 출력이 아닌 에러 출력을 /dev/null로 보내는 방법

 

* 검색했던 index.html을 host PC로 복사한다

docker cp nginx:/usr/share/nginx/html/index.html index.html

* index.html 파일 내용 중 Welcome to nginx! => Hello World로 바꾼다

* 수정한 index.html 파일을 다시 원래 위치로 복사한다

docker cp index.html nginx:/usr/share/nginx/html/index.html

* 수정이 반영된 docker의 이미지를 변경하려면 commit해줘야 한다

docker commit nginx mynginx

* 이미지를 다시 조회해보면 mynginx라는 이미지가 보인다

* docker ps로 조회해보면 nginx가 구동중인데, 기존 이미지(nginx)를 멈춘다

* 다시 조회해보면 멈춰 있는데, 구동 목록에서 삭제한다

* 새로 생성된 이미지를 구동시킨 후 접속하면 바뀐 문자열이 나타난다

 

* 현재 작업중인 폴더에 Dockerfile(확장자 없음)파일을 만들어서 내용을 다음과 같이 입력한다

FROM nginx
COPY index.html /usr/share/nginx/html/

* 그런 다음 명령창에 다음과 같이 입력한다

FROM nginx
COPY index.html /usr/share/nginx/html/

* 이미지를 조회해 보면 mynginx2라는 Repository가 추가된 것을 알 수 있다

* 이 이미지를 8002번 포트로 구동시켜본다

 

 

 

1. 윈도우의 작업관리자에 가상화 항목이 "사용"이라고 되어있는지 확인한다

2. Windows 기능 켜기/끄기 실행 후 Hyper-V기능을 체크 확인(안되어 있으면 체크 > 확인 > 재부팅)

3. google에서 "docker install windows"로 검색해서 나오는 페이지에서 "Docker Desktop for Windows"버튼을 눌러 다운 받아 설치를 진행한다.

* 설치 다하고 재부팅 했더니 다음과 같은 에러 메세지가 나온다

==> 조치 : https://suzxc2468.tistory.com/211

* 조치 후 정상 구동

* 이미지 다운로드 후 조회하면 이미지 목록이 나온다

$docker pull nginx
$docker images

* 다운로드한 이미지를 컨테이너화 해서 도커로 실행

docker run --name nginx -p 8000:80 -d nginx

  1) --name : 컨테이너 이름

  2) -p : 도커 컨테이너 포트(80)을 내 PC 포트(8000)로 포트포워딩

  3) -d : detached mode, 즉 백그라운드 실행

  4) nginx : 도커 이름

 

* 도커가 잘 실행되고 있는지 확인

docker ps

 

 

 

 

이미지의 경계선을 그려주는 모델같은데..... 테스트 해봄

 

1. tensorflow 1.15.4 버전에서 구동할거라

   - cuda : 10.0

   - cudnn : 7.4로 맞춤

 

2. anaconda 에서 환경을 만든다

conda create -n dexined python=3.7
conda activate dexined

 

3. 활성화 시킨 다음 tensorflow설치한다

pip install tensorflow-gpu==1.15.4

 

4. github에서 소스를 받은 후 legacy폴더로 이동

git clone https://github.com/xavysp/DexiNed
cd DexiNed/legacy

 

5. requirements.txt파일을 이용하여 설치 시작해야 하는데, 그냥 설치하면 다음과 같이 오류 발생

** 그러나 그대로 설치하면 다음과 같이 오류 발생

requirements.txt파일을 다음과 같이 수정

....
grpcio==1.26.0
h5py==2.10.0
idna==2.9
Keras-Applications==1.0.8
Keras-Preprocessing==1.1.0
Markdown==3.1.1
matplotlib==3.1.2
mock==4.0.2
numpy==1.18.1
oauthlib==3.1.0
opencv-python==4.4.0   =(수정)=> opencv-python==4.4.0.46
opt-einsum==3.2.1
pkg-resources==0.0.0    <== 삭제
protobuf==3.11.2
pyasn1==0.4.8
pyasn1-modules==0.2.8
pyparsing==2.4.6
python-dateutil==2.8.1
requests==2.23.0
requests-oauthlib==1.3.0
.....

후에 다음과 같이 설치

pip install -r requirements.txt

 

6. 추가로 다음을 설치해준다

pip install pillow

 

7. 다음을 실행하면 오류 발생한다

python run_model.py --image_width=512 --image_height=512

8. 아무이름.pth파일을 만들어서 github를 다운받은 경로를 넣고

'F:\D\DL\DexiNed'

[Anaconda설치경로]\envs\dexined\Lib\site-packages 에 복사한다

** https://doitgrow.com/24 참조

 

9. https://drive.google.com/drive/folders/1fLBpOrSXC2VOWUvDtNGyrHcuB2IB-4_D 경로에서 파일 4개를 다운받는다

1) train_2.zip파일을 풀어서 legacy/checkpoints/DXN_BIPED/train 폴더를 차례로 만들어서 넣어준다

 2) data_list.zip파일을 풀어서 legacy/data폴더를 만들고 그 안에 데이터 파일을 넣는다

10. 다음의 명령어로 테스트를 진행한다

python run_model.py --image_width=512 --image_height=512 --model_state=test

뭔가 진행이 된다.

** legacy\results\edges\DexiNed_BIPED2CLASSIC 폴더에 4개의 폴더가 생성되고, 각각의 폴더에 결과가 저장되어 있다

 

 

C# 소켓이 프로그램시,

 

Connected 속성으로 정확히 체크할 수 없는 경우에 다음과 같이 체크 가능하다

 

bool isConnCheck = !((_socket.Poll(1000, SelectMode.SelectRead) && (_socket.Available == 0)) || !_socket.Connected);

원본 영상 : https://youtu.be/Zn4Wsrv2Xds

 

지금도 요리를 잘 하진 못하지만,

 

아무것도 모를 때 유튜브 보고 무턱대고 따라해 봤는데, 괜찮았음

 

아버지 칠순을 우리집에서 했는데, 그때도 반응이 괜찮았음..ㅎㅎㅎ

 

그런데 문제가 머리가 나빠서 그런가 전체 과정이 안 외워지고,

유튜브를 보면서 요리를 하니, 보려고 하는 장면이 빨리 지나가버리고, 보려고 하는 위치까지 이동해야 하는 게 불편해서 블로그에 정리를 해 놓음.

 

1. 재료 준비

1. 앞다리살, 삼겹살 등을 추천함
2. (기본)대파
3. (기본)양파
4. (기본)마늘
5. (추가)고추
6. (추가)양배추
7. (추가)파프리카
8. (추가)버섯

통마늘은 편으로 썰어서

2. 양념장 만들기

3. 조리

1) 식용유와 마늘을 넣고 구워줌

2) 마늘 색이 노래지면 돼지고기 투하

3) 설탕 한 스푼 투하 : 고기에 스미면서 연육작용 

4) 후추 / 생강 / 소주

 

5) 양념장 투하 후 섞어 줌

​6) 썰어놓은 야채 투입 후 섞어줌(양파가 익을 때까지)

7) 참기름과 참깨로 마무리

 

 

블록체인 개념을 이해하려고 읽어본 책

 

기본 개념과 다양성에 대해서는 더 많이 알게되었지만, 

 

구현은 어떻게 하는지 아직 감도 안온다는...-_-;

1. Pytorch 최신 버전으로 설치하려고 하니 내 PC에 설치된 cuda 10.2는 더이상 지원하지 않는다고 하여  11.3설치

2. ananconda 가상환경 생성 및 설치

> conda create -n mmdetection python=3.7
> conda activate mmdetection
> conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch
> pip install onnx
> cd mmdetection
> python setup.py install
> pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/cu113/torch1.11.0/index.html

3. 작업할 폴더로 이동한 뒤 mmdetection를 다운받는다

git clone https://github.com/open-mmlab/mmdetection

4. faster rcnn 사전 학습된 파일을 다음의경로에서 다운 받은 뒤 현재 작업 폴더로 복사한다

http://download.openmmlab.com/mmdetection/v2.0/faster_rcnn/faster_rcnn_r50_fpn_1x_coco/faster_rcnn_r50_fpn_1x_coco_20200130-047c8118.pth 
 

 

5. 다음의 명령어로 pth파일을 onnx파일로 변경한다

python tools/deployment/pytorch2onnx.py \
configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py \
../faster_rcnn_r50_fpn_1x_coco_20200130-047c8118.pth \
--output-file ../faster_rcnn_r50_fpn_1x_coco_20200130-047c8118.onnx \
--input-img demo/demo.jpg --test-img demo/demo.jpg  \
--shape 608 608 \
--show \
--verify \
--dynamic-export \
--cfg-options \
model.test_cfg.deploy_nms_pre=-1

+ Recent posts