exude-master

所属分类:matlab编程
开发工具:matlab
文件大小:3127KB
下载次数:2
上传日期:2018-11-27 10:18:12
上 传 者Hanan087
说明:  blind image quality assesment in Matlab. this code give the image quality index for the given image.

文件列表:
.travis.yml (61, 2018-10-08)
docs (0, 2018-10-08)
docs\process (0, 2018-10-08)
docs\process\flow.gif (233226, 2018-10-08)
docs\process\flow.png (46087, 2018-10-08)
docs\process\flow.vsdx (44308, 2018-10-08)
docs\process\flow1.png (49689, 2018-10-08)
docs\process\flow2.png (52571, 2018-10-08)
docs\process\flow3.png (50221, 2018-10-08)
docs\process\flow4.png (51162, 2018-10-08)
docs\process\flow5.png (50302, 2018-10-08)
docs\process\logo.png (227, 2018-10-08)
docs\process\p_new.png (362451, 2018-10-08)
docs\process\process.png (94883, 2018-10-08)
docs\process\process.vsdx (98226, 2018-10-08)
docs\process\process_300_250.png (33162, 2018-10-08)
docs\process\process_new.png (351508, 2018-10-08)
docs\process\process_new.vsdx (98546, 2018-10-08)
docs\process\process_new_1.png (328626, 2018-10-08)
docs\process\process_new_1.vsdx (92471, 2018-10-08)
docs\process\process_new_300_250_new.png (443980, 2018-10-08)
docs\process\process_testing.png (342603, 2018-10-08)
docs\process\stock_meta.png (1543600, 2018-10-08)
nexus_deply.bat (64, 2018-10-08)
pom.xml (7850, 2018-10-08)
settings.xml (352, 2018-10-08)
src (0, 2018-10-08)
src\main (0, 2018-10-08)
src\main\java (0, 2018-10-08)
src\main\java\com (0, 2018-10-08)
src\main\java\com\uttesh (0, 2018-10-08)
src\main\java\com\uttesh\data (0, 2018-10-08)
src\main\java\com\uttesh\data\stopping_en.properties (4598, 2018-10-08)
src\main\java\com\uttesh\data\stopping_nl.properties (303, 2018-10-08)
src\main\java\com\uttesh\data\swear_en.properties (3000, 2018-10-08)
src\main\java\com\uttesh\exude (0, 2018-10-08)
src\main\java\com\uttesh\exude\ExudeData.java (3243, 2018-10-08)
... ...

# exude demo [![Maven Central](https://img.shields.io/maven-central/v/com.uttesh/exude.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.uttesh%22%20AND%20a:%22exude%22) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.uttesh/exude/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.uttesh/exude/) [![Build Status](https://travis-ci.org/uttesh/exude.svg)](https://travis-ci.org/uttesh/exude)

This is simple library for removing/filtering the stopping,stemming words from the text data, this library is in very basic level of development need to work on for later changes.

This is the part of maven repository now,Directly add in pom following. com.uttesh exude 0.0.4 How to use exude Library
Download latest version of exude download Features: * Filter stopping words from given text/file/link * Filter stemming words from given text/file/link * Get swear words from given text/file/link How Exude library works: Step 1: Filter the duplicate words from the input data/file.
Step 2: Filter the stopping words from step1 filtered data.
Step 3: Filter the stemmer/swear words from step2 filtered data using the Porter algorithm which is used for suffix stripping.
exude process sequence flow: ![demo](https://raw.github.com/uttesh/exude/master/docs/process/flow.png) Environment and dependent jar file
1. Minimum JDK 1.6 or higher 2. Apache Tika jar (which is used to parse the files for the data extraction) Sample code: Sample Text Data String inputData = "Kannada is a Southern Dravidian language, and according to Dravidian scholar Sanford Steever, its history can be conventionally divided into three periods; Old Kannada (halegannada) from 450–1200 A.D., Middle Kannada (Nadugannada) from 1200–1700 A.D., and Modern Kannada from 1700 to the present.[20] Kannada is influenced to an appreciable extent by Sanskrit. Influences of other languages such as Prakrit and Pali can also be found in Kannada language."; String output = ExudeData.getInstance().filterStoppings(inputData); System.out.println("output : "+output); Sample File Data String inputData = "any file path"; String output = ExudeData.getInstance().filterStoppings(inputData); System.out.println("output : "+output); Sample Link Data String inputData = "https://en.wikipedia.org/wiki/Rama"; String output = ExudeData.getInstance().filterStoppings(inputData); System.out.println("output : "+output); Get swear words from data/file/link String inputData = "enter text with bad words"; String output = ExudeData.getInstance().getSwearWords(inputData); System.out.println("output : "+output); New Feature: 1. Keep the duplicate words after the filterStoppings Sample Text Data String inputData = "testing testing testing the keep keep the the duplicate data data in result"; String output = ExudeData.getInstance().filterStoppingsKeepDuplicates(inputData); System.out.println("output : "+output); contributions ============= Credit apache tika which is used to parse the files for the data extraction. Exude library Developer : uttesh.com

License

(The Apache License)

Copyright (c) 2018 Uttesh Kumar T.H.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.


近期下载者

相关文件


收藏者