본문 바로가기

TIL

TIL 051923

강의에서처럼 우클릭 -> 이미지 저장하기 이걸 할 수 없어서 찾은 글

https://iagreebut.tistory.com/70

 

[OpenCV]이미지 읽기,출력,저장

OpenCV를 이용하여 이미지 읽어오기, 쓰기(출력),저정하기 구글 코랩사용 ProjectStudy>yj>crop> OpenCV이미지읽기_쓰기_저장하기 , 이미지 저장.ipynb OpenCV는 RGB가 아닌 BGR을 사용 ( 순서를 변경해야함 ) -> i

iagreebut.tistory.com

cv2.imwrite('images/hw_1_2.png', output3)  # 이미지 저장


https://velog.io/@jhdai_ly/%EB%84%98%ED%8C%8C%EC%9D%B4Numpy-%ED%8C%90%EB%8B%A4%EC%8A%A4Pandasaxis%EC%9D%98-%EC%9D%98%EB%AF%B8-%ED%96%89%EC%B6%95row%EA%B3%BC-%EC%97%B4column%EC%B6%95-axis0-axis1

 

[판다스(Pandas)]axis의 뜻 - 행축(row)과 열(column)축, axis=0, axis=1

💡오늘 배울 내용 axis는 N차원 배열을 정의할때 사용되기도 하며 여러 연산 과정에서의 기준으로도 쓰입니다. 즉, 파이썬 라이브러리 Numpy, Pandas에서 매개변수로 자주 사용되는 axis의 의미에 대

velog.io

axis=1: 옆으로 이어붙일 때

axis=0: 위아래로 이어붙일 때


https://dogsavestheworld.tistory.com/147

 

[python] 소수 n째 자리까지 출력하기 (round(), %, format(), f-string)

1. round 함수 (round(값, 반올림하려는 자릿수)) # round(값, 반올림하려는 자릿수) print(round(3.55555)) # (1) print(round(3.55555, 0)) # (2) print(round(3.55555, 1)) print(round(3.55555, 3)) print(round(3.55555, 4)) round 함수는 반

dogsavestheworld.tistory.com


https://codedragon.tistory.com/10118

 

ModuleNotFoundError: No module named 'tensorflow.keras' 해결방법

에러 메시지 ModuleNotFoundError: No module named 'tensorflow.keras' ModuleNotFoundError Traceback (most recent call last) in () 1 import tensorflow as tf ----> 2 from tensorflow.keras.models import Sequential 3 from tensorflow.keras.layers import Dens

codedragon.tistory.com

https://wikidocs.net/74167

 

강의 02 가위 바위 보 분류 모델 파인 튜닝 (include_top=False)

``` Keras Tutorial : Fine-tuning using pre-trained models https://www.learnopencv.com/keras-tutoria…

wikidocs.net

# from tensorflow.keras.applications.mobilenet_v2 import preprocess_input
# from tensorflow.keras.models import load_model
from keras.applications.mobilenet_v2 import preprocess_input
from keras.models import load_model

'TIL' 카테고리의 다른 글

TIL 052323  (0) 2023.05.23
TIL 052223  (0) 2023.05.22
TIL 051823  (4) 2023.05.18
TIL 051723  (0) 2023.05.16
TIL 051623  (0) 2023.05.16