cancel
Showing results for 
Search instead for 
Did you mean: 

Recognizing Text In Images

baallee
Champ in-the-making
Champ in-the-making
Hello
i want search image content use full index
such a plugins can implements this?

thanks.
2 REPLIES 2

mrogers
Star Contributor
Star Contributor
This may be what you are looking for
http://wiki.alfresco.com/wiki/Imaging

baallee
Champ in-the-making
Champ in-the-making
Thank you very much.

by the way,the WIKI provides ocr-transformers-context.xml is old, it can not work with Alfresco that i checkout from svn

the problem this
<property name="explicitTransformations">
         <list>
            <bean class="org.alfresco.repo.content.transform.ContentTransformerRegistry$TransformationKey" >
                <constructor-arg><value>image/tiff</value></constructor-arg>
                <constructor-arg><value>application/pdf</value></constructor-arg>
            </bean>
         </list>
</property>

should be
<property name="explicitTransformations">
         <list>
            <bean class="org.alfresco.repo.content.transform.ExplictTransformationDetails">
                <constructor-arg><value>application/pdf</value></constructor-arg>
                <constructor-arg><value>image/tiff</value></constructor-arg>
            </bean>
         </list>
</property>