pyushkevich / itksnap

ITK-SNAP medical image segmentation tool
http://www.itksnap.org
GNU General Public License v3.0
294 stars 86 forks source link

cannot open input file 'Release\itksnapui_model.lib' #3

Open ShanyChen opened 5 years ago

ShanyChen commented 5 years ago

i was running itk-snap3.6. and i encounter this problem cannot open input file 'Release\itksnapui_model.lib' . I try a lot, but I still can't fix this problem .I still can't get itksnapui_model.lib

I use system win10 +vs2015+ITK8.2.0+QT5.12.1+VTK4.13.1. can you give me the lib itksnapui_model.lib. my email 1694690970@qq.com or 18850149974@163.com.

sorry for poor English.

pyushkevich commented 5 years ago

There must be some other compiler errors that are happening, preventing from building itksnapui_model.lib

The combination of libraries you are using is incorrect. Please see itksnap.org (Code link) for the correct combination for each ITK-SNAP version

Paul

On Sun, Mar 3, 2019 at 8:13 AM ShanyChen notifications@github.com wrote:

i was running itk-snap3.6. and i encounter this problem cannot open input file 'Release\itksnapui_model.lib' . I try a lot, but I still can't fix this problem .I still can't get itksnapui_model.lib

I use system win10 +vs2015+ITK8.2.0+QT5.12.1+VTK4.13.1. can you give me the lib itksnapui_model.lib. my email 1694690970@qq.com or 18850149974@163.com.

sorry for poor English.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/pyushkevich/itksnap/issues/3, or mute the thread https://github.com/notifications/unsubscribe-auth/ABLyW5XykDh7VPDEMsJfZ_GWVmyG_OXkks5vS8qWgaJpZM4ba-5V .

-- Paul A. Yushkevich, Ph.D. Associate Professor Penn Image Computing and Science Laboratory Department of Radiology University of Pennsylvania

ShanyChen commented 5 years ago

yes, you are right. there is a code error that class IntensityCurveControlPointsContextItem cannot be instantiated. The reason for this is that the interface function vtkMTimeType GetControlPointsMTime () = 0 in the main parent class vtkControlPoints Item is not overloaded in the inherited class IntensityCurveControlPoints ContextItem, resulting in the subclass being an abstract class that cannot be instantiated, leading to compilation failure. virtual unsigned long long vtkMTimeType GetControlPointsMTime () = 0 in the main parent. but in the inherited class is unsigned long int vtkMTimeType GetControlPointsMTime (){}.that cause a problem. but I didn't realize that is the problem cause itksnapui_model.lib didn't build at the beginning. thank you. sorry for poor English.