├── Dataset ├── test │ ├── akahara_0009.jpg │ ├── akahara_0010.jpg │ ├── akahara_0011.jpg │ ├── madara_0009.jpg │ ├── madara_0010.jpg │ └── madara_0011.jpg └── train │ ├── akahara_0004.jpg │ ├── akahara_0005.jpg │ ├── akahara_0007.jpg │ ├── madara_0001.jpg │ ├── madara_0003.jpg │ └── madara_0006.jpg ├── Image_processing_tips.ipynb ├── LICENSE ├── Question_01_10 ├── README.md ├── answers_cpp │ ├── answer_1.cpp │ ├── answer_10.cpp │ ├── answer_2.cpp │ ├── answer_3.cpp │ ├── answer_4.cpp │ ├── answer_5.cpp │ ├── answer_6.cpp │ ├── answer_7.cpp │ ├── answer_8.cpp │ └── answer_9.cpp ├── answers_image │ ├── answer_1.jpg │ ├── answer_10.jpg │ ├── answer_2.jpg │ ├── answer_3.jpg │ ├── answer_4.jpg │ ├── answer_5.jpg │ ├── answer_6.jpg │ ├── answer_7.jpg │ ├── answer_8.jpg │ └── answer_9.jpg ├── answers_py │ ├── answer_1.py │ ├── answer_10.py │ ├── answer_2.py │ ├── answer_3.py │ ├── answer_4.py │ ├── answer_5.py │ ├── answer_6.py │ ├── answer_7.py │ ├── answer_8.py │ └── answer_9.py ├── assets │ ├── gaussian_filter.png │ ├── histogram-Gray-1.png │ ├── histogram-Gray.jpg │ ├── otsu_binary_1.png │ ├── otsu_binary_2.png │ └── otsu_binary_3.png ├── imori.jpg └── imori_noise.jpg ├── Question_11_20 ├── README.md ├── answers_cpp │ ├── answer_11.cpp │ ├── answer_12.cpp │ ├── answer_13.cpp │ ├── answer_14.cpp │ ├── answer_15.cpp │ ├── answer_16.cpp │ ├── answer_17.cpp │ ├── answer_18.cpp │ └── answer_19.cpp ├── answers_image │ ├── answer_11.jpg │ ├── answer_12.jpg │ ├── answer_13.jpg │ ├── answer_14_h.jpg │ ├── answer_14_v.jpg │ ├── answer_15_h.jpg │ ├── answer_15_v.jpg │ ├── answer_16_h.jpg │ ├── answer_16_v.jpg │ ├── answer_17.jpg │ ├── answer_18.jpg │ ├── answer_19.jpg │ └── answer_20.png ├── answers_py │ ├── answer_11.py │ ├── answer_12.py │ ├── answer_13.py │ ├── answer_14.py │ ├── answer_15.py │ ├── answer_16.py │ ├── answer_17.py │ ├── answer_18.py │ ├── answer_19.py │ └── answer_20.py ├── imori.jpg ├── imori_dark.jpg └── imori_noise.jpg ├── Question_21_30 ├── README.md ├── answers_cpp │ ├── answer_21.cpp │ ├── answer_22.cpp │ ├── answer_23.cpp │ ├── answer_24.cpp │ ├── answer_25.cpp │ ├── answer_26.cpp │ ├── answer_27.cpp │ ├── answer_28.cpp │ ├── answer_29.cpp │ └── answer_30.cpp ├── answers_image │ ├── answer_21_1.jpg │ ├── answer_21_2.png │ ├── answer_22_1.jpg │ ├── answer_22_2.png │ ├── answer_23_1.jpg │ ├── answer_23_2.png │ ├── answer_24.jpg │ ├── answer_25.jpg │ ├── answer_26.jpg │ ├── answer_27.jpg │ ├── answer_28.jpg │ ├── answer_29_1.jpg │ ├── answer_29_2.jpg │ ├── answer_30_1.jpg │ └── answer_30_2.jpg ├── answers_py │ ├── answer_21.py │ ├── answer_22.py │ ├── answer_23.py │ ├── answer_24.py │ ├── answer_25.py │ ├── answer_26.py │ ├── answer_27.py │ ├── answer_28.py │ ├── answer_29.py │ └── answer_30.py ├── assets │ ├── affine_equ1.png │ ├── affine_equ2.png │ ├── affine_equ3.png │ ├── affine_equ4.png │ ├── affine_equ5.png │ ├── affine_equ6.png │ ├── bci_equ1.png │ ├── bci_equ2.png │ ├── bci_equ3.png │ ├── bci_fig.png │ ├── bli_equ1.png │ ├── bli_fig.png │ ├── gamma_equ1.png │ ├── gamma_equ2.png │ ├── hist_equ_equ.png │ ├── hist_mani_equ.png │ ├── hist_norm_equ.png │ └── nni_fig.png ├── imori.jpg ├── imori_dark.jpg ├── imori_gamma.jpg ├── out.jpg ├── question_24_1.jpg └── question_24_2.jpg ├── Question_31_40 ├── README.md ├── answers_cpp │ ├── .DS_Store │ ├── answer_31.cpp │ ├── answer_32.cpp │ ├── answer_33.cpp │ ├── answer_34.cpp │ ├── answer_35.cpp │ ├── answer_36.cpp │ ├── answer_37.cpp │ ├── answer_38.cpp │ ├── answer_39.cpp │ └── answer_40.cpp ├── answers_image │ ├── answer_31_1.jpg │ ├── answer_31_2.jpg │ ├── answer_31_3.jpg │ ├── answer_32.jpg │ ├── answer_32_ps.jpg │ ├── answer_33.jpg │ ├── answer_34.jpg │ ├── answer_35.jpg │ ├── answer_36.jpg │ ├── answer_37.jpg │ ├── answer_38.jpg │ ├── answer_39.jpg │ └── answer_40.jpg ├── answers_py │ ├── _answer_38.py │ ├── _answer_40.py │ ├── answer_31.py │ ├── answer_32.py │ ├── answer_33.py │ ├── answer_34.py │ ├── answer_35.py │ ├── answer_36.py │ ├── answer_37.py │ ├── answer_38.py │ ├── answer_39.py │ └── answer_40.py ├── assets │ ├── .DS_Store │ ├── dct_equ.png │ ├── dft_equ.png │ ├── idct_equ.png │ ├── idct_equ2.png │ ├── idft_equ.png │ ├── lpf.png │ └── psnr_mse_equ.png ├── imori.jpg └── imori_gray.jpg ├── Question_41_50 ├── README.md ├── answers_cpp │ ├── answer_41.cpp │ ├── answer_42.cpp │ ├── answer_43.cpp │ ├── answer_44.cpp │ ├── answer_45.cpp │ ├── answer_46.cpp │ ├── answer_47.cpp │ ├── answer_48.cpp │ ├── answer_49.cpp │ └── answer_50.cpp ├── answers_image │ ├── .DS_Store │ ├── answer_4.jpg │ ├── answer_41_1.jpg │ ├── answer_41_2.jpg │ ├── answer_42.jpg │ ├── answer_42_1.jpg │ ├── answer_42_2.jpg │ ├── answer_43.jpg │ ├── answer_44.jpg │ ├── answer_45.jpg │ ├── answer_46.jpg │ ├── answer_47.jpg │ ├── answer_48.jpg │ ├── answer_49.jpg │ └── answer_50.jpg ├── answers_py │ ├── .DS_Store │ ├── answer_41.py │ ├── answer_42.py │ ├── answer_43.py │ ├── answer_44.py │ ├── answer_45.py │ ├── answer_46.py │ ├── answer_47.py │ ├── answer_48.py │ ├── answer_49.py │ └── answer_50.py ├── assets │ ├── canny_erode2.jpg │ ├── morphology_closing.png │ ├── morphology_dilate.png │ ├── morphology_erode.png │ └── morphology_opening.png ├── imori.jpg └── thorino.jpg ├── Question_51_60 ├── README.md ├── answers │ ├── answer_4.jpg │ ├── answer_51.jpg │ ├── answer_51.py │ ├── answer_52.jpg │ ├── answer_52.py │ ├── answer_53.jpg │ ├── answer_53.py │ ├── answer_54.jpg │ ├── answer_54.py │ ├── answer_55.jpg │ ├── answer_55.py │ ├── answer_56.jpg │ ├── answer_56.py │ ├── answer_57.jpg │ ├── answer_57.py │ ├── answer_58.png │ ├── answer_58.py │ ├── answer_59.png │ ├── answer_59.py │ ├── answer_60.jpg │ └── answer_60.py ├── imori.jpg ├── imori_part.jpg ├── seg.png └── thorino.jpg ├── Question_61_70 ├── README.md ├── answers │ ├── answer_61.png │ ├── answer_61.py │ ├── answer_62.png │ ├── answer_62.py │ ├── answer_63.png │ ├── answer_63.py │ ├── answer_64.png │ ├── answer_64.py │ ├── answer_64_a.py │ ├── answer_65.png │ ├── answer_65.py │ ├── answer_66.py │ ├── answer_66_gra.jpg │ ├── answer_66_mag.jpg │ ├── answer_67.png │ ├── answer_67.py │ ├── answer_68.png │ ├── answer_68.py │ ├── answer_69.jpg │ ├── answer_69.py │ ├── answer_70.png │ └── answer_70.py ├── gazo.png ├── imori.jpg └── renketsu.png ├── Question_71_80 ├── README.md ├── answers │ ├── answer_70.png │ ├── answer_71.jpg │ ├── answer_71.py │ ├── answer_72.jpg │ ├── answer_72.py │ ├── answer_72_mask.png │ ├── answer_73.jpg │ ├── answer_73.py │ ├── answer_74.jpg │ ├── answer_74.py │ ├── answer_75.py │ ├── answer_75_1.jpg │ ├── answer_75_16.jpg │ ├── answer_75_2.jpg │ ├── answer_75_32.jpg │ ├── answer_75_4.jpg │ ├── answer_75_8.jpg │ ├── answer_76.jpg │ ├── answer_76.py │ ├── answer_77.jpg │ ├── answer_77.py │ ├── answer_78.png │ ├── answer_78.py │ ├── answer_79.png │ ├── answer_79.py │ ├── answer_80.jpg │ └── answer_80.py └── imori.jpg ├── Question_81_90 ├── README.md ├── answers │ ├── answer_81.jpg │ ├── answer_81.py │ ├── answer_82.png │ ├── answer_82.py │ ├── answer_83.jpg │ ├── answer_83.py │ ├── answer_84.png │ ├── answer_84.py │ ├── answer_85.py │ ├── answer_86.py │ ├── answer_87.py │ ├── answer_88.py │ ├── answer_89.py │ └── answer_90.py ├── dataset │ ├── test_akahara_1.jpg │ ├── test_akahara_2.jpg │ ├── test_madara_1.jpg │ ├── test_madara_2.jpg │ ├── train_akahara_1.jpg │ ├── train_akahara_2.jpg │ ├── train_akahara_3.jpg │ ├── train_akahara_4.jpg │ ├── train_akahara_5.jpg │ ├── train_madara_1.jpg │ ├── train_madara_2.jpg │ ├── train_madara_3.jpg │ ├── train_madara_4.jpg │ └── train_madara_5.jpg ├── imori.jpg └── thorino.jpg ├── Question_91_100 ├── README.md ├── answers │ ├── _answer_100.py │ ├── _answer_95.py │ ├── _answer_96.py │ ├── _answer_98.py │ ├── _answer_99.py │ ├── answer_100.jpg │ ├── answer_100.py │ ├── answer_100_gt.jpg │ ├── answer_91.jpg │ ├── answer_91.py │ ├── answer_92.jpg │ ├── answer_92.py │ ├── answer_92_k10.jpg │ ├── answer_92_m.jpg │ ├── answer_93.py │ ├── answer_94.jpg │ ├── answer_94.py │ ├── answer_95.py │ ├── answer_96.py │ ├── answer_97.py │ ├── answer_98.jpg │ ├── answer_98.py │ ├── answer_98_2.py │ ├── answer_99.jpg │ └── answer_99.py ├── imori.jpg ├── imori_1.jpg ├── imori_2.jpg ├── imori_many.jpg └── madara.jpg ├── README.md ├── Tutorial ├── README.md ├── README_javascript.md ├── README_opencv_c_install.md ├── answer.cpp ├── answer.html ├── assets │ ├── out.jpg │ ├── out_cpp.png │ ├── out_practice.jpg │ ├── sampe_html1.jpg │ ├── sample.jpg │ ├── sample.png │ ├── sample1.png │ ├── sample10.png │ ├── sample2.png │ ├── sample3.png │ ├── sample4.png │ ├── sample5.png │ ├── sample6.png │ ├── sample7.png │ ├── sample8.png │ ├── sample9.png │ └── sample_html2.jpg ├── imori.jpg ├── sample.cpp ├── sample.html └── sample_ex.html ├── assets ├── imori.jpg ├── imori_512x512.jpg └── sample.png ├── requirements.txt └── yobi ├── crop.py ├── crop_hog.py ├── crop_hog_nn.py ├── hog.py ├── neural.py ├── neuralnet.py ├── neuralnet2.py └── nn.py /Dataset/test/akahara_0009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Dataset/test/akahara_0009.jpg -------------------------------------------------------------------------------- /Dataset/test/akahara_0010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Dataset/test/akahara_0010.jpg -------------------------------------------------------------------------------- /Dataset/test/akahara_0011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Dataset/test/akahara_0011.jpg -------------------------------------------------------------------------------- /Dataset/test/madara_0009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Dataset/test/madara_0009.jpg -------------------------------------------------------------------------------- /Dataset/test/madara_0010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Dataset/test/madara_0010.jpg -------------------------------------------------------------------------------- /Dataset/test/madara_0011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Dataset/test/madara_0011.jpg -------------------------------------------------------------------------------- /Dataset/train/akahara_0004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Dataset/train/akahara_0004.jpg -------------------------------------------------------------------------------- /Dataset/train/akahara_0005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Dataset/train/akahara_0005.jpg -------------------------------------------------------------------------------- /Dataset/train/akahara_0007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Dataset/train/akahara_0007.jpg -------------------------------------------------------------------------------- /Dataset/train/madara_0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Dataset/train/madara_0001.jpg -------------------------------------------------------------------------------- /Dataset/train/madara_0003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Dataset/train/madara_0003.jpg -------------------------------------------------------------------------------- /Dataset/train/madara_0006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Dataset/train/madara_0006.jpg -------------------------------------------------------------------------------- /Image_processing_tips.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Image_processing_tips.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/LICENSE -------------------------------------------------------------------------------- /Question_01_10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/README.md -------------------------------------------------------------------------------- /Question_01_10/answers_cpp/answer_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_cpp/answer_1.cpp -------------------------------------------------------------------------------- /Question_01_10/answers_cpp/answer_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_cpp/answer_10.cpp -------------------------------------------------------------------------------- /Question_01_10/answers_cpp/answer_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_cpp/answer_2.cpp -------------------------------------------------------------------------------- /Question_01_10/answers_cpp/answer_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_cpp/answer_3.cpp -------------------------------------------------------------------------------- /Question_01_10/answers_cpp/answer_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_cpp/answer_4.cpp -------------------------------------------------------------------------------- /Question_01_10/answers_cpp/answer_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_cpp/answer_5.cpp -------------------------------------------------------------------------------- /Question_01_10/answers_cpp/answer_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_cpp/answer_6.cpp -------------------------------------------------------------------------------- /Question_01_10/answers_cpp/answer_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_cpp/answer_7.cpp -------------------------------------------------------------------------------- /Question_01_10/answers_cpp/answer_8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_cpp/answer_8.cpp -------------------------------------------------------------------------------- /Question_01_10/answers_cpp/answer_9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_cpp/answer_9.cpp -------------------------------------------------------------------------------- /Question_01_10/answers_image/answer_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_image/answer_1.jpg -------------------------------------------------------------------------------- /Question_01_10/answers_image/answer_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_image/answer_10.jpg -------------------------------------------------------------------------------- /Question_01_10/answers_image/answer_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_image/answer_2.jpg -------------------------------------------------------------------------------- /Question_01_10/answers_image/answer_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_image/answer_3.jpg -------------------------------------------------------------------------------- /Question_01_10/answers_image/answer_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_image/answer_4.jpg -------------------------------------------------------------------------------- /Question_01_10/answers_image/answer_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_image/answer_5.jpg -------------------------------------------------------------------------------- /Question_01_10/answers_image/answer_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_image/answer_6.jpg -------------------------------------------------------------------------------- /Question_01_10/answers_image/answer_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_image/answer_7.jpg -------------------------------------------------------------------------------- /Question_01_10/answers_image/answer_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_image/answer_8.jpg -------------------------------------------------------------------------------- /Question_01_10/answers_image/answer_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_image/answer_9.jpg -------------------------------------------------------------------------------- /Question_01_10/answers_py/answer_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_py/answer_1.py -------------------------------------------------------------------------------- /Question_01_10/answers_py/answer_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_py/answer_10.py -------------------------------------------------------------------------------- /Question_01_10/answers_py/answer_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_py/answer_2.py -------------------------------------------------------------------------------- /Question_01_10/answers_py/answer_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_py/answer_3.py -------------------------------------------------------------------------------- /Question_01_10/answers_py/answer_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_py/answer_4.py -------------------------------------------------------------------------------- /Question_01_10/answers_py/answer_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_py/answer_5.py -------------------------------------------------------------------------------- /Question_01_10/answers_py/answer_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_py/answer_6.py -------------------------------------------------------------------------------- /Question_01_10/answers_py/answer_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_py/answer_7.py -------------------------------------------------------------------------------- /Question_01_10/answers_py/answer_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_py/answer_8.py -------------------------------------------------------------------------------- /Question_01_10/answers_py/answer_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/answers_py/answer_9.py -------------------------------------------------------------------------------- /Question_01_10/assets/gaussian_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/assets/gaussian_filter.png -------------------------------------------------------------------------------- /Question_01_10/assets/histogram-Gray-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/assets/histogram-Gray-1.png -------------------------------------------------------------------------------- /Question_01_10/assets/histogram-Gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/assets/histogram-Gray.jpg -------------------------------------------------------------------------------- /Question_01_10/assets/otsu_binary_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/assets/otsu_binary_1.png -------------------------------------------------------------------------------- /Question_01_10/assets/otsu_binary_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/assets/otsu_binary_2.png -------------------------------------------------------------------------------- /Question_01_10/assets/otsu_binary_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/assets/otsu_binary_3.png -------------------------------------------------------------------------------- /Question_01_10/imori.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/imori.jpg -------------------------------------------------------------------------------- /Question_01_10/imori_noise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_01_10/imori_noise.jpg -------------------------------------------------------------------------------- /Question_11_20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/README.md -------------------------------------------------------------------------------- /Question_11_20/answers_cpp/answer_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_cpp/answer_11.cpp -------------------------------------------------------------------------------- /Question_11_20/answers_cpp/answer_12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_cpp/answer_12.cpp -------------------------------------------------------------------------------- /Question_11_20/answers_cpp/answer_13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_cpp/answer_13.cpp -------------------------------------------------------------------------------- /Question_11_20/answers_cpp/answer_14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_cpp/answer_14.cpp -------------------------------------------------------------------------------- /Question_11_20/answers_cpp/answer_15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_cpp/answer_15.cpp -------------------------------------------------------------------------------- /Question_11_20/answers_cpp/answer_16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_cpp/answer_16.cpp -------------------------------------------------------------------------------- /Question_11_20/answers_cpp/answer_17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_cpp/answer_17.cpp -------------------------------------------------------------------------------- /Question_11_20/answers_cpp/answer_18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_cpp/answer_18.cpp -------------------------------------------------------------------------------- /Question_11_20/answers_cpp/answer_19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_cpp/answer_19.cpp -------------------------------------------------------------------------------- /Question_11_20/answers_image/answer_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_image/answer_11.jpg -------------------------------------------------------------------------------- /Question_11_20/answers_image/answer_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_image/answer_12.jpg -------------------------------------------------------------------------------- /Question_11_20/answers_image/answer_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_image/answer_13.jpg -------------------------------------------------------------------------------- /Question_11_20/answers_image/answer_14_h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_image/answer_14_h.jpg -------------------------------------------------------------------------------- /Question_11_20/answers_image/answer_14_v.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_image/answer_14_v.jpg -------------------------------------------------------------------------------- /Question_11_20/answers_image/answer_15_h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_image/answer_15_h.jpg -------------------------------------------------------------------------------- /Question_11_20/answers_image/answer_15_v.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_image/answer_15_v.jpg -------------------------------------------------------------------------------- /Question_11_20/answers_image/answer_16_h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_image/answer_16_h.jpg -------------------------------------------------------------------------------- /Question_11_20/answers_image/answer_16_v.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_image/answer_16_v.jpg -------------------------------------------------------------------------------- /Question_11_20/answers_image/answer_17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_image/answer_17.jpg -------------------------------------------------------------------------------- /Question_11_20/answers_image/answer_18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_image/answer_18.jpg -------------------------------------------------------------------------------- /Question_11_20/answers_image/answer_19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_image/answer_19.jpg -------------------------------------------------------------------------------- /Question_11_20/answers_image/answer_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_image/answer_20.png -------------------------------------------------------------------------------- /Question_11_20/answers_py/answer_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_py/answer_11.py -------------------------------------------------------------------------------- /Question_11_20/answers_py/answer_12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_py/answer_12.py -------------------------------------------------------------------------------- /Question_11_20/answers_py/answer_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_py/answer_13.py -------------------------------------------------------------------------------- /Question_11_20/answers_py/answer_14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_py/answer_14.py -------------------------------------------------------------------------------- /Question_11_20/answers_py/answer_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_py/answer_15.py -------------------------------------------------------------------------------- /Question_11_20/answers_py/answer_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_py/answer_16.py -------------------------------------------------------------------------------- /Question_11_20/answers_py/answer_17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_py/answer_17.py -------------------------------------------------------------------------------- /Question_11_20/answers_py/answer_18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_py/answer_18.py -------------------------------------------------------------------------------- /Question_11_20/answers_py/answer_19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_py/answer_19.py -------------------------------------------------------------------------------- /Question_11_20/answers_py/answer_20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/answers_py/answer_20.py -------------------------------------------------------------------------------- /Question_11_20/imori.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/imori.jpg -------------------------------------------------------------------------------- /Question_11_20/imori_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/imori_dark.jpg -------------------------------------------------------------------------------- /Question_11_20/imori_noise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_11_20/imori_noise.jpg -------------------------------------------------------------------------------- /Question_21_30/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/README.md -------------------------------------------------------------------------------- /Question_21_30/answers_cpp/answer_21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_cpp/answer_21.cpp -------------------------------------------------------------------------------- /Question_21_30/answers_cpp/answer_22.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_cpp/answer_22.cpp -------------------------------------------------------------------------------- /Question_21_30/answers_cpp/answer_23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_cpp/answer_23.cpp -------------------------------------------------------------------------------- /Question_21_30/answers_cpp/answer_24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_cpp/answer_24.cpp -------------------------------------------------------------------------------- /Question_21_30/answers_cpp/answer_25.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_cpp/answer_25.cpp -------------------------------------------------------------------------------- /Question_21_30/answers_cpp/answer_26.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_cpp/answer_26.cpp -------------------------------------------------------------------------------- /Question_21_30/answers_cpp/answer_27.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_cpp/answer_27.cpp -------------------------------------------------------------------------------- /Question_21_30/answers_cpp/answer_28.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_cpp/answer_28.cpp -------------------------------------------------------------------------------- /Question_21_30/answers_cpp/answer_29.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_cpp/answer_29.cpp -------------------------------------------------------------------------------- /Question_21_30/answers_cpp/answer_30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_cpp/answer_30.cpp -------------------------------------------------------------------------------- /Question_21_30/answers_image/answer_21_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_image/answer_21_1.jpg -------------------------------------------------------------------------------- /Question_21_30/answers_image/answer_21_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_image/answer_21_2.png -------------------------------------------------------------------------------- /Question_21_30/answers_image/answer_22_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_image/answer_22_1.jpg -------------------------------------------------------------------------------- /Question_21_30/answers_image/answer_22_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_image/answer_22_2.png -------------------------------------------------------------------------------- /Question_21_30/answers_image/answer_23_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_image/answer_23_1.jpg -------------------------------------------------------------------------------- /Question_21_30/answers_image/answer_23_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_image/answer_23_2.png -------------------------------------------------------------------------------- /Question_21_30/answers_image/answer_24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_image/answer_24.jpg -------------------------------------------------------------------------------- /Question_21_30/answers_image/answer_25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_image/answer_25.jpg -------------------------------------------------------------------------------- /Question_21_30/answers_image/answer_26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_image/answer_26.jpg -------------------------------------------------------------------------------- /Question_21_30/answers_image/answer_27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_image/answer_27.jpg -------------------------------------------------------------------------------- /Question_21_30/answers_image/answer_28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_image/answer_28.jpg -------------------------------------------------------------------------------- /Question_21_30/answers_image/answer_29_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_image/answer_29_1.jpg -------------------------------------------------------------------------------- /Question_21_30/answers_image/answer_29_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_image/answer_29_2.jpg -------------------------------------------------------------------------------- /Question_21_30/answers_image/answer_30_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_image/answer_30_1.jpg -------------------------------------------------------------------------------- /Question_21_30/answers_image/answer_30_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_image/answer_30_2.jpg -------------------------------------------------------------------------------- /Question_21_30/answers_py/answer_21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_py/answer_21.py -------------------------------------------------------------------------------- /Question_21_30/answers_py/answer_22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_py/answer_22.py -------------------------------------------------------------------------------- /Question_21_30/answers_py/answer_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_py/answer_23.py -------------------------------------------------------------------------------- /Question_21_30/answers_py/answer_24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_py/answer_24.py -------------------------------------------------------------------------------- /Question_21_30/answers_py/answer_25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_py/answer_25.py -------------------------------------------------------------------------------- /Question_21_30/answers_py/answer_26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_py/answer_26.py -------------------------------------------------------------------------------- /Question_21_30/answers_py/answer_27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_py/answer_27.py -------------------------------------------------------------------------------- /Question_21_30/answers_py/answer_28.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_py/answer_28.py -------------------------------------------------------------------------------- /Question_21_30/answers_py/answer_29.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_py/answer_29.py -------------------------------------------------------------------------------- /Question_21_30/answers_py/answer_30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/answers_py/answer_30.py -------------------------------------------------------------------------------- /Question_21_30/assets/affine_equ1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/affine_equ1.png -------------------------------------------------------------------------------- /Question_21_30/assets/affine_equ2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/affine_equ2.png -------------------------------------------------------------------------------- /Question_21_30/assets/affine_equ3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/affine_equ3.png -------------------------------------------------------------------------------- /Question_21_30/assets/affine_equ4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/affine_equ4.png -------------------------------------------------------------------------------- /Question_21_30/assets/affine_equ5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/affine_equ5.png -------------------------------------------------------------------------------- /Question_21_30/assets/affine_equ6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/affine_equ6.png -------------------------------------------------------------------------------- /Question_21_30/assets/bci_equ1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/bci_equ1.png -------------------------------------------------------------------------------- /Question_21_30/assets/bci_equ2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/bci_equ2.png -------------------------------------------------------------------------------- /Question_21_30/assets/bci_equ3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/bci_equ3.png -------------------------------------------------------------------------------- /Question_21_30/assets/bci_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/bci_fig.png -------------------------------------------------------------------------------- /Question_21_30/assets/bli_equ1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/bli_equ1.png -------------------------------------------------------------------------------- /Question_21_30/assets/bli_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/bli_fig.png -------------------------------------------------------------------------------- /Question_21_30/assets/gamma_equ1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/gamma_equ1.png -------------------------------------------------------------------------------- /Question_21_30/assets/gamma_equ2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/gamma_equ2.png -------------------------------------------------------------------------------- /Question_21_30/assets/hist_equ_equ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/hist_equ_equ.png -------------------------------------------------------------------------------- /Question_21_30/assets/hist_mani_equ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/hist_mani_equ.png -------------------------------------------------------------------------------- /Question_21_30/assets/hist_norm_equ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/hist_norm_equ.png -------------------------------------------------------------------------------- /Question_21_30/assets/nni_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/assets/nni_fig.png -------------------------------------------------------------------------------- /Question_21_30/imori.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/imori.jpg -------------------------------------------------------------------------------- /Question_21_30/imori_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/imori_dark.jpg -------------------------------------------------------------------------------- /Question_21_30/imori_gamma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/imori_gamma.jpg -------------------------------------------------------------------------------- /Question_21_30/out.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/out.jpg -------------------------------------------------------------------------------- /Question_21_30/question_24_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/question_24_1.jpg -------------------------------------------------------------------------------- /Question_21_30/question_24_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_21_30/question_24_2.jpg -------------------------------------------------------------------------------- /Question_31_40/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/README.md -------------------------------------------------------------------------------- /Question_31_40/answers_cpp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_cpp/.DS_Store -------------------------------------------------------------------------------- /Question_31_40/answers_cpp/answer_31.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_cpp/answer_31.cpp -------------------------------------------------------------------------------- /Question_31_40/answers_cpp/answer_32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_cpp/answer_32.cpp -------------------------------------------------------------------------------- /Question_31_40/answers_cpp/answer_33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_cpp/answer_33.cpp -------------------------------------------------------------------------------- /Question_31_40/answers_cpp/answer_34.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_cpp/answer_34.cpp -------------------------------------------------------------------------------- /Question_31_40/answers_cpp/answer_35.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_cpp/answer_35.cpp -------------------------------------------------------------------------------- /Question_31_40/answers_cpp/answer_36.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_cpp/answer_36.cpp -------------------------------------------------------------------------------- /Question_31_40/answers_cpp/answer_37.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_cpp/answer_37.cpp -------------------------------------------------------------------------------- /Question_31_40/answers_cpp/answer_38.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_cpp/answer_38.cpp -------------------------------------------------------------------------------- /Question_31_40/answers_cpp/answer_39.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_cpp/answer_39.cpp -------------------------------------------------------------------------------- /Question_31_40/answers_cpp/answer_40.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_cpp/answer_40.cpp -------------------------------------------------------------------------------- /Question_31_40/answers_image/answer_31_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_image/answer_31_1.jpg -------------------------------------------------------------------------------- /Question_31_40/answers_image/answer_31_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_image/answer_31_2.jpg -------------------------------------------------------------------------------- /Question_31_40/answers_image/answer_31_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_image/answer_31_3.jpg -------------------------------------------------------------------------------- /Question_31_40/answers_image/answer_32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_image/answer_32.jpg -------------------------------------------------------------------------------- /Question_31_40/answers_image/answer_32_ps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_image/answer_32_ps.jpg -------------------------------------------------------------------------------- /Question_31_40/answers_image/answer_33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_image/answer_33.jpg -------------------------------------------------------------------------------- /Question_31_40/answers_image/answer_34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_image/answer_34.jpg -------------------------------------------------------------------------------- /Question_31_40/answers_image/answer_35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_image/answer_35.jpg -------------------------------------------------------------------------------- /Question_31_40/answers_image/answer_36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_image/answer_36.jpg -------------------------------------------------------------------------------- /Question_31_40/answers_image/answer_37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_image/answer_37.jpg -------------------------------------------------------------------------------- /Question_31_40/answers_image/answer_38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_image/answer_38.jpg -------------------------------------------------------------------------------- /Question_31_40/answers_image/answer_39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_image/answer_39.jpg -------------------------------------------------------------------------------- /Question_31_40/answers_image/answer_40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_image/answer_40.jpg -------------------------------------------------------------------------------- /Question_31_40/answers_py/_answer_38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_py/_answer_38.py -------------------------------------------------------------------------------- /Question_31_40/answers_py/_answer_40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_py/_answer_40.py -------------------------------------------------------------------------------- /Question_31_40/answers_py/answer_31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_py/answer_31.py -------------------------------------------------------------------------------- /Question_31_40/answers_py/answer_32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_py/answer_32.py -------------------------------------------------------------------------------- /Question_31_40/answers_py/answer_33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_py/answer_33.py -------------------------------------------------------------------------------- /Question_31_40/answers_py/answer_34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_py/answer_34.py -------------------------------------------------------------------------------- /Question_31_40/answers_py/answer_35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_py/answer_35.py -------------------------------------------------------------------------------- /Question_31_40/answers_py/answer_36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_py/answer_36.py -------------------------------------------------------------------------------- /Question_31_40/answers_py/answer_37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_py/answer_37.py -------------------------------------------------------------------------------- /Question_31_40/answers_py/answer_38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_py/answer_38.py -------------------------------------------------------------------------------- /Question_31_40/answers_py/answer_39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_py/answer_39.py -------------------------------------------------------------------------------- /Question_31_40/answers_py/answer_40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/answers_py/answer_40.py -------------------------------------------------------------------------------- /Question_31_40/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/assets/.DS_Store -------------------------------------------------------------------------------- /Question_31_40/assets/dct_equ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/assets/dct_equ.png -------------------------------------------------------------------------------- /Question_31_40/assets/dft_equ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/assets/dft_equ.png -------------------------------------------------------------------------------- /Question_31_40/assets/idct_equ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/assets/idct_equ.png -------------------------------------------------------------------------------- /Question_31_40/assets/idct_equ2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/assets/idct_equ2.png -------------------------------------------------------------------------------- /Question_31_40/assets/idft_equ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/assets/idft_equ.png -------------------------------------------------------------------------------- /Question_31_40/assets/lpf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/assets/lpf.png -------------------------------------------------------------------------------- /Question_31_40/assets/psnr_mse_equ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/assets/psnr_mse_equ.png -------------------------------------------------------------------------------- /Question_31_40/imori.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/imori.jpg -------------------------------------------------------------------------------- /Question_31_40/imori_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_31_40/imori_gray.jpg -------------------------------------------------------------------------------- /Question_41_50/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/README.md -------------------------------------------------------------------------------- /Question_41_50/answers_cpp/answer_41.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_cpp/answer_41.cpp -------------------------------------------------------------------------------- /Question_41_50/answers_cpp/answer_42.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_cpp/answer_42.cpp -------------------------------------------------------------------------------- /Question_41_50/answers_cpp/answer_43.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_cpp/answer_43.cpp -------------------------------------------------------------------------------- /Question_41_50/answers_cpp/answer_44.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_cpp/answer_44.cpp -------------------------------------------------------------------------------- /Question_41_50/answers_cpp/answer_45.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_cpp/answer_45.cpp -------------------------------------------------------------------------------- /Question_41_50/answers_cpp/answer_46.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_cpp/answer_46.cpp -------------------------------------------------------------------------------- /Question_41_50/answers_cpp/answer_47.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_cpp/answer_47.cpp -------------------------------------------------------------------------------- /Question_41_50/answers_cpp/answer_48.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_cpp/answer_48.cpp -------------------------------------------------------------------------------- /Question_41_50/answers_cpp/answer_49.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_cpp/answer_49.cpp -------------------------------------------------------------------------------- /Question_41_50/answers_cpp/answer_50.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_cpp/answer_50.cpp -------------------------------------------------------------------------------- /Question_41_50/answers_image/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_image/.DS_Store -------------------------------------------------------------------------------- /Question_41_50/answers_image/answer_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_image/answer_4.jpg -------------------------------------------------------------------------------- /Question_41_50/answers_image/answer_41_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_image/answer_41_1.jpg -------------------------------------------------------------------------------- /Question_41_50/answers_image/answer_41_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_image/answer_41_2.jpg -------------------------------------------------------------------------------- /Question_41_50/answers_image/answer_42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_image/answer_42.jpg -------------------------------------------------------------------------------- /Question_41_50/answers_image/answer_42_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_image/answer_42_1.jpg -------------------------------------------------------------------------------- /Question_41_50/answers_image/answer_42_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_image/answer_42_2.jpg -------------------------------------------------------------------------------- /Question_41_50/answers_image/answer_43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_image/answer_43.jpg -------------------------------------------------------------------------------- /Question_41_50/answers_image/answer_44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_image/answer_44.jpg -------------------------------------------------------------------------------- /Question_41_50/answers_image/answer_45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_image/answer_45.jpg -------------------------------------------------------------------------------- /Question_41_50/answers_image/answer_46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_image/answer_46.jpg -------------------------------------------------------------------------------- /Question_41_50/answers_image/answer_47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_image/answer_47.jpg -------------------------------------------------------------------------------- /Question_41_50/answers_image/answer_48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_image/answer_48.jpg -------------------------------------------------------------------------------- /Question_41_50/answers_image/answer_49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_image/answer_49.jpg -------------------------------------------------------------------------------- /Question_41_50/answers_image/answer_50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_image/answer_50.jpg -------------------------------------------------------------------------------- /Question_41_50/answers_py/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_py/.DS_Store -------------------------------------------------------------------------------- /Question_41_50/answers_py/answer_41.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_py/answer_41.py -------------------------------------------------------------------------------- /Question_41_50/answers_py/answer_42.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_py/answer_42.py -------------------------------------------------------------------------------- /Question_41_50/answers_py/answer_43.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_py/answer_43.py -------------------------------------------------------------------------------- /Question_41_50/answers_py/answer_44.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_py/answer_44.py -------------------------------------------------------------------------------- /Question_41_50/answers_py/answer_45.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_py/answer_45.py -------------------------------------------------------------------------------- /Question_41_50/answers_py/answer_46.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_py/answer_46.py -------------------------------------------------------------------------------- /Question_41_50/answers_py/answer_47.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_py/answer_47.py -------------------------------------------------------------------------------- /Question_41_50/answers_py/answer_48.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_py/answer_48.py -------------------------------------------------------------------------------- /Question_41_50/answers_py/answer_49.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_py/answer_49.py -------------------------------------------------------------------------------- /Question_41_50/answers_py/answer_50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/answers_py/answer_50.py -------------------------------------------------------------------------------- /Question_41_50/assets/canny_erode2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/assets/canny_erode2.jpg -------------------------------------------------------------------------------- /Question_41_50/assets/morphology_closing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/assets/morphology_closing.png -------------------------------------------------------------------------------- /Question_41_50/assets/morphology_dilate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/assets/morphology_dilate.png -------------------------------------------------------------------------------- /Question_41_50/assets/morphology_erode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/assets/morphology_erode.png -------------------------------------------------------------------------------- /Question_41_50/assets/morphology_opening.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/assets/morphology_opening.png -------------------------------------------------------------------------------- /Question_41_50/imori.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/imori.jpg -------------------------------------------------------------------------------- /Question_41_50/thorino.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_41_50/thorino.jpg -------------------------------------------------------------------------------- /Question_51_60/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/README.md -------------------------------------------------------------------------------- /Question_51_60/answers/answer_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_4.jpg -------------------------------------------------------------------------------- /Question_51_60/answers/answer_51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_51.jpg -------------------------------------------------------------------------------- /Question_51_60/answers/answer_51.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_51.py -------------------------------------------------------------------------------- /Question_51_60/answers/answer_52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_52.jpg -------------------------------------------------------------------------------- /Question_51_60/answers/answer_52.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_52.py -------------------------------------------------------------------------------- /Question_51_60/answers/answer_53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_53.jpg -------------------------------------------------------------------------------- /Question_51_60/answers/answer_53.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_53.py -------------------------------------------------------------------------------- /Question_51_60/answers/answer_54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_54.jpg -------------------------------------------------------------------------------- /Question_51_60/answers/answer_54.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_54.py -------------------------------------------------------------------------------- /Question_51_60/answers/answer_55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_55.jpg -------------------------------------------------------------------------------- /Question_51_60/answers/answer_55.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_55.py -------------------------------------------------------------------------------- /Question_51_60/answers/answer_56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_56.jpg -------------------------------------------------------------------------------- /Question_51_60/answers/answer_56.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_56.py -------------------------------------------------------------------------------- /Question_51_60/answers/answer_57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_57.jpg -------------------------------------------------------------------------------- /Question_51_60/answers/answer_57.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_57.py -------------------------------------------------------------------------------- /Question_51_60/answers/answer_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_58.png -------------------------------------------------------------------------------- /Question_51_60/answers/answer_58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_58.py -------------------------------------------------------------------------------- /Question_51_60/answers/answer_59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_59.png -------------------------------------------------------------------------------- /Question_51_60/answers/answer_59.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_59.py -------------------------------------------------------------------------------- /Question_51_60/answers/answer_60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_60.jpg -------------------------------------------------------------------------------- /Question_51_60/answers/answer_60.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/answers/answer_60.py -------------------------------------------------------------------------------- /Question_51_60/imori.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/imori.jpg -------------------------------------------------------------------------------- /Question_51_60/imori_part.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/imori_part.jpg -------------------------------------------------------------------------------- /Question_51_60/seg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/seg.png -------------------------------------------------------------------------------- /Question_51_60/thorino.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_51_60/thorino.jpg -------------------------------------------------------------------------------- /Question_61_70/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/README.md -------------------------------------------------------------------------------- /Question_61_70/answers/answer_61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_61.png -------------------------------------------------------------------------------- /Question_61_70/answers/answer_61.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_61.py -------------------------------------------------------------------------------- /Question_61_70/answers/answer_62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_62.png -------------------------------------------------------------------------------- /Question_61_70/answers/answer_62.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_62.py -------------------------------------------------------------------------------- /Question_61_70/answers/answer_63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_63.png -------------------------------------------------------------------------------- /Question_61_70/answers/answer_63.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_63.py -------------------------------------------------------------------------------- /Question_61_70/answers/answer_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_64.png -------------------------------------------------------------------------------- /Question_61_70/answers/answer_64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_64.py -------------------------------------------------------------------------------- /Question_61_70/answers/answer_64_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_64_a.py -------------------------------------------------------------------------------- /Question_61_70/answers/answer_65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_65.png -------------------------------------------------------------------------------- /Question_61_70/answers/answer_65.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_65.py -------------------------------------------------------------------------------- /Question_61_70/answers/answer_66.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_66.py -------------------------------------------------------------------------------- /Question_61_70/answers/answer_66_gra.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_66_gra.jpg -------------------------------------------------------------------------------- /Question_61_70/answers/answer_66_mag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_66_mag.jpg -------------------------------------------------------------------------------- /Question_61_70/answers/answer_67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_67.png -------------------------------------------------------------------------------- /Question_61_70/answers/answer_67.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_67.py -------------------------------------------------------------------------------- /Question_61_70/answers/answer_68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_68.png -------------------------------------------------------------------------------- /Question_61_70/answers/answer_68.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_68.py -------------------------------------------------------------------------------- /Question_61_70/answers/answer_69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_69.jpg -------------------------------------------------------------------------------- /Question_61_70/answers/answer_69.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_69.py -------------------------------------------------------------------------------- /Question_61_70/answers/answer_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_70.png -------------------------------------------------------------------------------- /Question_61_70/answers/answer_70.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/answers/answer_70.py -------------------------------------------------------------------------------- /Question_61_70/gazo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/gazo.png -------------------------------------------------------------------------------- /Question_61_70/imori.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/imori.jpg -------------------------------------------------------------------------------- /Question_61_70/renketsu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_61_70/renketsu.png -------------------------------------------------------------------------------- /Question_71_80/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/README.md -------------------------------------------------------------------------------- /Question_71_80/answers/answer_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_70.png -------------------------------------------------------------------------------- /Question_71_80/answers/answer_71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_71.jpg -------------------------------------------------------------------------------- /Question_71_80/answers/answer_71.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_71.py -------------------------------------------------------------------------------- /Question_71_80/answers/answer_72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_72.jpg -------------------------------------------------------------------------------- /Question_71_80/answers/answer_72.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_72.py -------------------------------------------------------------------------------- /Question_71_80/answers/answer_72_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_72_mask.png -------------------------------------------------------------------------------- /Question_71_80/answers/answer_73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_73.jpg -------------------------------------------------------------------------------- /Question_71_80/answers/answer_73.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_73.py -------------------------------------------------------------------------------- /Question_71_80/answers/answer_74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_74.jpg -------------------------------------------------------------------------------- /Question_71_80/answers/answer_74.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_74.py -------------------------------------------------------------------------------- /Question_71_80/answers/answer_75.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_75.py -------------------------------------------------------------------------------- /Question_71_80/answers/answer_75_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_75_1.jpg -------------------------------------------------------------------------------- /Question_71_80/answers/answer_75_16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_75_16.jpg -------------------------------------------------------------------------------- /Question_71_80/answers/answer_75_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_75_2.jpg -------------------------------------------------------------------------------- /Question_71_80/answers/answer_75_32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_75_32.jpg -------------------------------------------------------------------------------- /Question_71_80/answers/answer_75_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_75_4.jpg -------------------------------------------------------------------------------- /Question_71_80/answers/answer_75_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_75_8.jpg -------------------------------------------------------------------------------- /Question_71_80/answers/answer_76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_76.jpg -------------------------------------------------------------------------------- /Question_71_80/answers/answer_76.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_76.py -------------------------------------------------------------------------------- /Question_71_80/answers/answer_77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_77.jpg -------------------------------------------------------------------------------- /Question_71_80/answers/answer_77.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_77.py -------------------------------------------------------------------------------- /Question_71_80/answers/answer_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_78.png -------------------------------------------------------------------------------- /Question_71_80/answers/answer_78.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_78.py -------------------------------------------------------------------------------- /Question_71_80/answers/answer_79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_79.png -------------------------------------------------------------------------------- /Question_71_80/answers/answer_79.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_79.py -------------------------------------------------------------------------------- /Question_71_80/answers/answer_80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_80.jpg -------------------------------------------------------------------------------- /Question_71_80/answers/answer_80.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/answers/answer_80.py -------------------------------------------------------------------------------- /Question_71_80/imori.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_71_80/imori.jpg -------------------------------------------------------------------------------- /Question_81_90/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/README.md -------------------------------------------------------------------------------- /Question_81_90/answers/answer_81.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/answers/answer_81.jpg -------------------------------------------------------------------------------- /Question_81_90/answers/answer_81.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/answers/answer_81.py -------------------------------------------------------------------------------- /Question_81_90/answers/answer_82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/answers/answer_82.png -------------------------------------------------------------------------------- /Question_81_90/answers/answer_82.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/answers/answer_82.py -------------------------------------------------------------------------------- /Question_81_90/answers/answer_83.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/answers/answer_83.jpg -------------------------------------------------------------------------------- /Question_81_90/answers/answer_83.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/answers/answer_83.py -------------------------------------------------------------------------------- /Question_81_90/answers/answer_84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/answers/answer_84.png -------------------------------------------------------------------------------- /Question_81_90/answers/answer_84.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/answers/answer_84.py -------------------------------------------------------------------------------- /Question_81_90/answers/answer_85.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/answers/answer_85.py -------------------------------------------------------------------------------- /Question_81_90/answers/answer_86.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/answers/answer_86.py -------------------------------------------------------------------------------- /Question_81_90/answers/answer_87.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/answers/answer_87.py -------------------------------------------------------------------------------- /Question_81_90/answers/answer_88.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/answers/answer_88.py -------------------------------------------------------------------------------- /Question_81_90/answers/answer_89.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/answers/answer_89.py -------------------------------------------------------------------------------- /Question_81_90/answers/answer_90.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/answers/answer_90.py -------------------------------------------------------------------------------- /Question_81_90/dataset/test_akahara_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/dataset/test_akahara_1.jpg -------------------------------------------------------------------------------- /Question_81_90/dataset/test_akahara_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/dataset/test_akahara_2.jpg -------------------------------------------------------------------------------- /Question_81_90/dataset/test_madara_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/dataset/test_madara_1.jpg -------------------------------------------------------------------------------- /Question_81_90/dataset/test_madara_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/dataset/test_madara_2.jpg -------------------------------------------------------------------------------- /Question_81_90/dataset/train_akahara_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/dataset/train_akahara_1.jpg -------------------------------------------------------------------------------- /Question_81_90/dataset/train_akahara_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/dataset/train_akahara_2.jpg -------------------------------------------------------------------------------- /Question_81_90/dataset/train_akahara_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/dataset/train_akahara_3.jpg -------------------------------------------------------------------------------- /Question_81_90/dataset/train_akahara_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/dataset/train_akahara_4.jpg -------------------------------------------------------------------------------- /Question_81_90/dataset/train_akahara_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/dataset/train_akahara_5.jpg -------------------------------------------------------------------------------- /Question_81_90/dataset/train_madara_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/dataset/train_madara_1.jpg -------------------------------------------------------------------------------- /Question_81_90/dataset/train_madara_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/dataset/train_madara_2.jpg -------------------------------------------------------------------------------- /Question_81_90/dataset/train_madara_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/dataset/train_madara_3.jpg -------------------------------------------------------------------------------- /Question_81_90/dataset/train_madara_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/dataset/train_madara_4.jpg -------------------------------------------------------------------------------- /Question_81_90/dataset/train_madara_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/dataset/train_madara_5.jpg -------------------------------------------------------------------------------- /Question_81_90/imori.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/imori.jpg -------------------------------------------------------------------------------- /Question_81_90/thorino.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_81_90/thorino.jpg -------------------------------------------------------------------------------- /Question_91_100/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/README.md -------------------------------------------------------------------------------- /Question_91_100/answers/_answer_100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/_answer_100.py -------------------------------------------------------------------------------- /Question_91_100/answers/_answer_95.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/_answer_95.py -------------------------------------------------------------------------------- /Question_91_100/answers/_answer_96.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/_answer_96.py -------------------------------------------------------------------------------- /Question_91_100/answers/_answer_98.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/_answer_98.py -------------------------------------------------------------------------------- /Question_91_100/answers/_answer_99.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/_answer_99.py -------------------------------------------------------------------------------- /Question_91_100/answers/answer_100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_100.jpg -------------------------------------------------------------------------------- /Question_91_100/answers/answer_100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_100.py -------------------------------------------------------------------------------- /Question_91_100/answers/answer_100_gt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_100_gt.jpg -------------------------------------------------------------------------------- /Question_91_100/answers/answer_91.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_91.jpg -------------------------------------------------------------------------------- /Question_91_100/answers/answer_91.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_91.py -------------------------------------------------------------------------------- /Question_91_100/answers/answer_92.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_92.jpg -------------------------------------------------------------------------------- /Question_91_100/answers/answer_92.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_92.py -------------------------------------------------------------------------------- /Question_91_100/answers/answer_92_k10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_92_k10.jpg -------------------------------------------------------------------------------- /Question_91_100/answers/answer_92_m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_92_m.jpg -------------------------------------------------------------------------------- /Question_91_100/answers/answer_93.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_93.py -------------------------------------------------------------------------------- /Question_91_100/answers/answer_94.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_94.jpg -------------------------------------------------------------------------------- /Question_91_100/answers/answer_94.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_94.py -------------------------------------------------------------------------------- /Question_91_100/answers/answer_95.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_95.py -------------------------------------------------------------------------------- /Question_91_100/answers/answer_96.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_96.py -------------------------------------------------------------------------------- /Question_91_100/answers/answer_97.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_97.py -------------------------------------------------------------------------------- /Question_91_100/answers/answer_98.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_98.jpg -------------------------------------------------------------------------------- /Question_91_100/answers/answer_98.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_98.py -------------------------------------------------------------------------------- /Question_91_100/answers/answer_98_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_98_2.py -------------------------------------------------------------------------------- /Question_91_100/answers/answer_99.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_99.jpg -------------------------------------------------------------------------------- /Question_91_100/answers/answer_99.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/answers/answer_99.py -------------------------------------------------------------------------------- /Question_91_100/imori.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/imori.jpg -------------------------------------------------------------------------------- /Question_91_100/imori_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/imori_1.jpg -------------------------------------------------------------------------------- /Question_91_100/imori_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/imori_2.jpg -------------------------------------------------------------------------------- /Question_91_100/imori_many.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/imori_many.jpg -------------------------------------------------------------------------------- /Question_91_100/madara.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Question_91_100/madara.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/README.md -------------------------------------------------------------------------------- /Tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/README.md -------------------------------------------------------------------------------- /Tutorial/README_javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/README_javascript.md -------------------------------------------------------------------------------- /Tutorial/README_opencv_c_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/README_opencv_c_install.md -------------------------------------------------------------------------------- /Tutorial/answer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/answer.cpp -------------------------------------------------------------------------------- /Tutorial/answer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/answer.html -------------------------------------------------------------------------------- /Tutorial/assets/out.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/assets/out.jpg -------------------------------------------------------------------------------- /Tutorial/assets/out_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/assets/out_cpp.png -------------------------------------------------------------------------------- /Tutorial/assets/out_practice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/assets/out_practice.jpg -------------------------------------------------------------------------------- /Tutorial/assets/sampe_html1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/assets/sampe_html1.jpg -------------------------------------------------------------------------------- /Tutorial/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/assets/sample.jpg -------------------------------------------------------------------------------- /Tutorial/assets/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/assets/sample.png -------------------------------------------------------------------------------- /Tutorial/assets/sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/assets/sample1.png -------------------------------------------------------------------------------- /Tutorial/assets/sample10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/assets/sample10.png -------------------------------------------------------------------------------- /Tutorial/assets/sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/assets/sample2.png -------------------------------------------------------------------------------- /Tutorial/assets/sample3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/assets/sample3.png -------------------------------------------------------------------------------- /Tutorial/assets/sample4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/assets/sample4.png -------------------------------------------------------------------------------- /Tutorial/assets/sample5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/assets/sample5.png -------------------------------------------------------------------------------- /Tutorial/assets/sample6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/assets/sample6.png -------------------------------------------------------------------------------- /Tutorial/assets/sample7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/assets/sample7.png -------------------------------------------------------------------------------- /Tutorial/assets/sample8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/assets/sample8.png -------------------------------------------------------------------------------- /Tutorial/assets/sample9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/assets/sample9.png -------------------------------------------------------------------------------- /Tutorial/assets/sample_html2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/assets/sample_html2.jpg -------------------------------------------------------------------------------- /Tutorial/imori.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/imori.jpg -------------------------------------------------------------------------------- /Tutorial/sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/sample.cpp -------------------------------------------------------------------------------- /Tutorial/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/sample.html -------------------------------------------------------------------------------- /Tutorial/sample_ex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/Tutorial/sample_ex.html -------------------------------------------------------------------------------- /assets/imori.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/assets/imori.jpg -------------------------------------------------------------------------------- /assets/imori_512x512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/assets/imori_512x512.jpg -------------------------------------------------------------------------------- /assets/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/assets/sample.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | matplotlib 3 | opencv-python 4 | -------------------------------------------------------------------------------- /yobi/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/yobi/crop.py -------------------------------------------------------------------------------- /yobi/crop_hog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/yobi/crop_hog.py -------------------------------------------------------------------------------- /yobi/crop_hog_nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/yobi/crop_hog_nn.py -------------------------------------------------------------------------------- /yobi/hog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/yobi/hog.py -------------------------------------------------------------------------------- /yobi/neural.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/yobi/neural.py -------------------------------------------------------------------------------- /yobi/neuralnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/yobi/neuralnet.py -------------------------------------------------------------------------------- /yobi/neuralnet2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/yobi/neuralnet2.py -------------------------------------------------------------------------------- /yobi/nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minido/Gasyori100knock-1/HEAD/yobi/nn.py --------------------------------------------------------------------------------