annotate transform/transform.pro @ 618:b1dc68507e46 sv-v1.7.1

* Layer data editor window: fix sorting for columns in region model, add Find feature * RDF import: assign names to layers based on event types, if no suitable labels are found in the RDF * Add label to status bar showing the last text that was passed in current layer (so e.g. counting 1, 2, 3, 4 if that's what beats are labelled) * Better layout of text labels for region layers in segmentation mode when they are close together * Give text layer the same method for finding "nearest point" as region and note layers, should improve its editability
author Chris Cannam
date Thu, 22 Oct 2009 15:54:21 +0000
parents ebb6ac65bccc
children 465f769ccad0
rev   line source
Chris@395 1 TEMPLATE = lib
Chris@395 2
Chris@395 3 SV_UNIT_PACKAGES = vamp vamp-hostsdk
Chris@580 4 load(../prf/sv.prf)
Chris@395 5
Chris@395 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions
Chris@395 7 QT += xml
Chris@395 8
Chris@395 9 TARGET = svtransform
Chris@395 10
Chris@395 11 DEPENDPATH += . ..
Chris@395 12 INCLUDEPATH += . ..
Chris@395 13 OBJECTS_DIR = tmp_obj
Chris@395 14 MOC_DIR = tmp_moc
Chris@395 15
Chris@395 16 # Input
Chris@498 17 HEADERS += CSVFeatureWriter.h \
Chris@498 18 FeatureExtractionModelTransformer.h \
Chris@498 19 FeatureWriter.h \
Chris@498 20 FileFeatureWriter.h \
Chris@395 21 RealTimeEffectModelTransformer.h \
Chris@395 22 Transform.h \
Chris@395 23 TransformDescription.h \
Chris@395 24 TransformFactory.h \
Chris@395 25 ModelTransformer.h \
Chris@395 26 ModelTransformerFactory.h
Chris@498 27 SOURCES += CSVFeatureWriter.cpp \
Chris@498 28 FeatureExtractionModelTransformer.cpp \
Chris@498 29 FileFeatureWriter.cpp \
Chris@395 30 RealTimeEffectModelTransformer.cpp \
Chris@395 31 Transform.cpp \
Chris@395 32 TransformFactory.cpp \
Chris@395 33 ModelTransformer.cpp \
Chris@395 34 ModelTransformerFactory.cpp