Package de.swa.gmaf.plugin.text
Class BagOfWordsDetection
java.lang.Object
de.swa.gmaf.plugin.text.BagOfWordsDetection
- All Implemented Interfaces:
GMAF_Plugin
public class BagOfWordsDetection extends java.lang.Object implements GMAF_Plugin
GMAF Plugin for the BagOfWords Detection algorithm for texts
-
Constructor Summary
Constructors Constructor Description BagOfWordsDetection()
-
Method Summary
Modifier and Type Method Description boolean
canProcess(java.lang.String extension)
this method returns, if the plugin is able to process files with a given extensionjava.util.Vector<Node>
getDetectedNodes()
this method is called by the GMAF to receive the results of this plugin and to fuse it into the MMFGboolean
isGeneralPlugin()
if this plugin contains overall metadata, e.g.void
process(java.net.URL url, java.io.File f, byte[] bytes, MMFG fv)
this method is called by the GMAF framework, when a new asset has to be processedboolean
providesRecoursiveData()
this method should indicate, if it returns recursive data, which are then re-processed within the GMAF framework
-
Constructor Details
-
BagOfWordsDetection
public BagOfWordsDetection()
-
-
Method Details
-
getDetectedNodes
Description copied from interface:GMAF_Plugin
this method is called by the GMAF to receive the results of this plugin and to fuse it into the MMFG- Specified by:
getDetectedNodes
in interfaceGMAF_Plugin
- Returns:
- a vector of MMFG nodes
-
isGeneralPlugin
public boolean isGeneralPlugin()Description copied from interface:GMAF_Plugin
if this plugin contains overall metadata, e.g. EXIF data, this method should return true to indicate, that these general data have to be attached to the MMFG's root node- Specified by:
isGeneralPlugin
in interfaceGMAF_Plugin
- Returns:
- true, if it is a general plugin
-
canProcess
public boolean canProcess(java.lang.String extension)Description copied from interface:GMAF_Plugin
this method returns, if the plugin is able to process files with a given extension- Specified by:
canProcess
in interfaceGMAF_Plugin
- Returns:
- true or false
-
process
Description copied from interface:GMAF_Plugin
this method is called by the GMAF framework, when a new asset has to be processed- Specified by:
process
in interfaceGMAF_Plugin
- Parameters:
url
- represents the temporary URL of the Multimedia asset to be processf
- represents the temporary file of the asset to be processedbytes
- contains the file's bytesfv
- represents the current MMFG, where the results of this plugin should be fused into
-
providesRecoursiveData
public boolean providesRecoursiveData()Description copied from interface:GMAF_Plugin
this method should indicate, if it returns recursive data, which are then re-processed within the GMAF framework- Specified by:
providesRecoursiveData
in interfaceGMAF_Plugin
- Returns:
- true, if recursive data is available
-