This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Initialize detector vector | |
| if (targetDetectors.size() == 0) | |
| { | |
| for (unsigned iter = 0; iter < inputImages.size(); iter++) targetDetectors.push_back(CalibTargetDetector()); | |
| } | |
| // Create Output vector | |
| for (unsigned iter = 0; iter < inputImages.size(); iter++) targetImages.push_back(TypedObject<cv::Mat>(cv::Mat())); | |
| std::vector<std::thread*> threads(inputImages.size()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import argparse, os | |
| import numpy as np | |
| from scipy.misc import imread, imsave | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument('--template_dir', required=True) # Low-res images | |
| parser.add_argument('--source_dir', required=True) # Outputs from CNN | |
| parser.add_argument('--output_dir', required=True) | |
| args = parser.parse_args() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script language="javascript" type="text/javascript"> | |
| <!-- | |
| function popitup(url) { | |
| newwindow=window.open(url,'name','height=200,width=150'); | |
| if (window.focus) {newwindow.focus()} | |
| return false; | |
| } | |
| // --> | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| κ΄λ¦¬λμ§ μλ DLL ν¨μ μ¬μ© | |
| ms-help://MS.MSDNQTR.v90.ko/dv_fxinterop/html/eca7606e-ebfb-4f47-b8d9-289903fdc045.htm | |
| C++/CLI | |
| κ°λ° λꡬ λ° μΈμ΄ -> Visual Studio μ€λͺ μ -> Visual C++ -> μμ -> Visual C++ μμ μ μ°¨ | |
| ms-help://MS.MSDNQTR.v90.ko/dv_vcedit/html/53ddbc6f-e123-4dc7-aa38-674b92e7cf62.htm | |
| κΌ λ΄μΌ λ κ² | |
| http://sj21.wo.to/tt/483 | |
| http://sj21.wo.to/tt/484 |