import numpy as np def hist_match ( source , template ): """ Adjust the pixel values of a grayscale image such that its histogram matches that of a target image Arguments: ----------- source: np.ndarray Image to transform; the histogram is computed over the flattened array template: np.ndarray Template image; can have different dimensions to source Returns: ----------- matched: np.ndarray The transformed output image """ oldshape = source . shape source = source . ravel () template = template . ravel () # get the set of unique pixel values and their corresponding indices and # counts s_values , bin_idx , s_counts = np . unique ( source , return_inverse = True , return_counts = True ) t_values , t_counts = np . unique ( template , return_counts = True ) ...
바리콘식과 가변코일식.
답글삭제고양이 턱수염방식은 사용이 어려운 단점.
답글삭제별을 좇는 아이..
답글삭제일본 애니의 특징이다..
리트로 기술적인 소재가 등장한다는것.
우리나라에선 상상할수 없는 소재인거지..
RFID의 수동태그처럼 전자파의 에너지를 이용한다.
답글삭제그만큼 AM복조는 에너지가 적게든다.
RFID는 더욱 적은 에너지가 드는 변복조 기술을 사용한다.