반응형
반응형

EOS 웹캠 유틸리티 1.1 [윈도우]

 

https://www.canon-ci.co.kr/support/sims/view?contentId=0200625404 

 

캐논코리아 주식회사

캐논의 카메라, 렌즈 정보 뿐만 아니라 사용후기, 소개, 캐논 카메라의 역사, 사진 촬영 팁 등 다양한 컨텐츠를 만나실 수 있습니다.

www.canon-ci.co.kr



*** 설치방법


소프트웨어 다운로드 및 설치 방법은 아래 지침을 참조하세요.
소프트웨어 설치 시에는 다른 응용 프로그램을 모두 종료하십시오.

1. 다운로드 페이지에서 "EOSWebcamUtility-WIN1.1.zip”을 다운로드 합니다. "EOSWebcamUtility-WIN1.1.zip” 파일을 컴퓨터의 원하는 폴더에 저장합니다.

2. 컴퓨터에 저장한 "EOSWebcamUtility-WIN1.1.zip” 폴더의 압축을 풀면 "EOSWebcamUtility-WIN1.1”이 표시됩니다. 압축이 풀린 폴더에서 “Setup.exe”를 더블 클릭합니다. EOS 웹캠 유틸리티 설치가 시작됩니다. (사용자 계정 제어[User Account Control] 창이 표시되면 화면의 지시 사항에 따라 진행합니다).

3. 설치를 마치려면 화면에 표시되는 지침을 따릅니다.

4. 설치가 완료되면 변경사항이 적용되도록 컴퓨터를 재시작하여야 합니다. 설치가 제대로 완료되었다면 다운로드 받은 파일과 “EOSWebcamUtility-WIN1.1.zip” 파일은 더 이상 필요하지 않습니다.

반응형
반응형

smile-o   meh-o  frown-o

https://fontawesome.com/v4/icon/smile-o

 

fa-smile-o: Font Awesome Icons

Get 1535 icons right now with FA Free, plus another 7020 icons with Pro, which also gets you another 53 icon category packs as we finish them! Our all-new SVG with JavaScript gives you all the power of SVG without the usual hassle. Ligatures for easier des

fontawesome.com

https://fontawesome.com/v4/icon/meh-o

 

fa-meh-o: Font Awesome Icons

Get 1535 icons right now with FA Free, plus another 7020 icons with Pro, which also gets you another 53 icon category packs as we finish them! Our all-new SVG with JavaScript gives you all the power of SVG without the usual hassle. Ligatures for easier des

fontawesome.com

https://fontawesome.com/v4/icon/frown-o

 

fa-frown-o: Font Awesome Icons

Get 1535 icons right now with FA Free, plus another 7020 icons with Pro, which also gets you another 53 icon category packs as we finish them! Our all-new SVG with JavaScript gives you all the power of SVG without the usual hassle. Ligatures for easier des

fontawesome.com

 

반응형
반응형

초보자를 위한 파이썬 300제 

https://wikidocs.net/book/922

 

초보자를 위한 파이썬 강의/기초 300 문제 같이 풀어보기

https://www.youtube.com/watch?v=SiK4iYt_7-s&list=PLNPt2ycoheHqhS_OP4XA8nWycWQWnQtki&index=1

 

반응형
반응형
#가상환경 만들기및 실행 

conda create -n jupiter-env python

# To activate this environment, use
#
#     $ conda activate jupiter-env
#
# To deactivate an active environment, use
#
#     $ conda deactivate

conda info --env
# conda environments:
#
base                     C:\ProgramData\Anaconda3
jupiter-env           *  C:\ProgramData\Anaconda3\envs\jupiter-env
main                     C:\ProgramData\Anaconda3\envs\main

(jupiter-env) D:\python\jupyter_data> conda install -y jupyter
(jupiter-env) D:\python\jupyter_data> conda install -y bokeh
(jupiter-env) D:\python\jupyter_data> conda install -y pandas
(jupiter-env) D:\python\jupyter_data> conda install -y matplotlib


(jupiter-env) D:\python\jupyter_data>mkdir notebook
(jupiter-env) D:\python\jupyter_data>cd notebook

# jupyter notebook 실행
(jupiter-env) D:\python\jupyter_data\notebook>jupyter notebook

 

VScode :

이름: Jupyter
ID: ms-toolsai.jupyter
버전: 2022.2.1030672458
게시자: Microsoft VS Marketplace 

링크: https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter

Jupyter notebook support, interactive programming and computing that supports Intellisense, debugging and more.

 


# Config 파일 생성 - Jupyter Notebook의 기본 설정
(jupiter-env) D:\python\jupyter_data\notebook>jupyter notebook --generate-config
Writing default config to: C:\Users\pydata\.jupyter\jupyter_notebook_config.py

반응형
반응형

[python] 초보자를 위한 파이썬 300제

 

파이썬 기초 문법을 배웠다고 해서 누구나 프로그래밍에 익숙해지는 것은 아닙니다. 프로그래밍에 익숙해지기까지 많은 문제를 풀어보고 익숙해지는 것이 필요합니다. 파이썬 300제는 파이썬 기초 문법과 관련된 문제들을 제공합니다. 파이썬 300제를 통해 지금까지 배운 기초 문법을 익혀보세요. 문제를 풀다가 막히는 부분은 각 문제 페이지 하단에 있는 유튜브 동영상을 참고하세요.

https://www.youtube.com/watch?v=SiK4iYt_7-s 

https://wikidocs.net/book/922

 

초보자를 위한 파이썬 300제

파이썬 기초 문법을 배웠다고 해서 누구나 프로그래밍에 익숙해지는 것은 아닙니다. 프로그래밍에 익숙해지기까지 많은 문제를 풀어보고 익숙해지는 것이 필요합니다. 파이썬 300제 ...

wikidocs.net

 

반응형
반응형

dictionary 를 json 으로 변환

 

https://docs.python.org/2/library/json.html

 

18.2. json — JSON encoder and decoder — Python 2.7.18 documentation

18.2. json — JSON encoder and decoder JSON (JavaScript Object Notation), specified by RFC 7159 (which obsoletes RFC 4627) and by ECMA-404, is a lightweight data interchange format inspired by JavaScript object literal syntax (although it is not a strict

docs.python.org

import json

dict1 = { 'name' : 'song', 'age' : 10 }

print "dict1 = %s" % dict1
print "dict1 type = %s" % type(dict1)
print "================"

# CONVERT dictionary to json using json.dump
json_val = json.dumps(dict1)


print "json_val = %s" % json_val
print "json_val type = %s" % type(json_val)
반응형

+ Recent posts