| 304 | } |
| 305 | |
| 306 | void MyFrame::OnIterativeFDoG(wxCommandEvent &event) |
| 307 | { |
| 308 | addlog("[CLD] Iterative FDoG...", wxColour(*wxBLUE)); |
| 309 | (drawPane->cld()).combineImage(); |
| 310 | (drawPane->cld()).genCLD(); |
| 311 | addlog("[CLD] Done", wxColour(*wxBLUE)); |
| 312 | |
| 313 | wxString s; |
| 314 | s.Printf("FDoG: %d iterations", ++FDoG_iteration); |
| 315 | SetStatusText(s, 2); |
| 316 | drawPane->render(); |
| 317 | } |
| 318 | |
| 319 | //Comboboxes |
| 320 | void MyFrame::OnProcessingBox(wxCommandEvent &event) |
nothing calls this directly
no test coverage detected