Save an image TODO: remove this
| 141 | // Save an image |
| 142 | // TODO: remove this |
| 143 | void Cameras::SaveSingleFrame() |
| 144 | { |
| 145 | if (!CaptureExists()) return; |
| 146 | m_NumberOfCapturedFrames++; |
| 147 | cvSaveImage(GetLastCapturedFrameFilename().char_str(), m_LastFrame); |
| 148 | //m_pMemo->AppendText(wxChar((char*)GetLastCapturedFrameFilename().c_str())); |
| 149 | //cvSaveImage("testImage.bmp", m_LastFrame); |
| 150 | } |
| 151 | |
| 152 | // TODO: remove this |
| 153 | wxString Cameras::GetLastCapturedFrameFilename() |
nothing calls this directly
no outgoing calls
no test coverage detected