MCPcopy Create free account
hub / github.com/andybarry/makerscanner / SaveSingleFrame

Method SaveSingleFrame

Cameras.cpp:143–150  ·  view source on GitHub ↗

Save an image TODO: remove this

Source from the content-addressed store, hash-verified

141// Save an image
142// TODO: remove this
143void 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
153wxString Cameras::GetLastCapturedFrameFilename()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected