0023055: EDF 10725 GEOM: In the shape recognition functionality, it is not possible to select an area for the filtering sample

This commit is contained in:
vsr 2015-04-29 17:10:44 +03:00
parent 8620d4d735
commit 939beceaf8

View File

@ -26,7 +26,8 @@
// SALOME includes // SALOME includes
#include "EntityGUI_FeatureDetectorDlg.h" #include "EntityGUI_FeatureDetectorDlg.h"
#include <ShapeRec_FeatureDetector.hxx> #include "ShapeRec_FeatureDetector.hxx"
#include "GEOM_Constants.h"
#include <OCCViewer_ViewWindow.h> #include <OCCViewer_ViewWindow.h>
#include <OCCViewer_ViewManager.h> #include <OCCViewer_ViewManager.h>
@ -445,12 +446,19 @@ void EntityGUI_FeatureDetectorDlg::SelectionIntoArgument()
else else
return ; return ;
std::string theImgFileName = myAISShape->TextureFile(); SalomeApp_Study* study = dynamic_cast<SalomeApp_Study*>( SUIT_Session::session()->activeApplication()->activeStudy() );
if ( theImgFileName == "" ) if ( !study ) return;
LightApp_Application* app = ::qobject_cast<LightApp_Application*>( study->application() );
if ( !app ) return;
SUIT_ViewManager* vm = app->activeViewManager();
if ( !vm ) return;
PropMap propMap = study->getObjectProperties( vm->getGlobalId(), myFaceEntry );
QString theImgFileName = propMap.value( GEOM::propertyName( GEOM::Texture ) ).toString();
if ( theImgFileName.isEmpty() )
return ; return ;
// Setting the image caracteristics // Setting the image caracteristics
myDetector->SetPath( theImgFileName ); myDetector->SetPath( theImgFileName.toStdString() );
height = myDetector->GetImgHeight(); height = myDetector->GetImgHeight();
width = myDetector->GetImgWidth(); width = myDetector->GetImgWidth();
pictureLeft = -0.5 * width; // X coordinate of the top left corner of the background image in the view pictureLeft = -0.5 * width; // X coordinate of the top left corner of the background image in the view