Skip to content

IIPAnalyze is a tool for analyzing incoming IIP protocol image requests and creating hotspot map images and histograms.

Notifications You must be signed in to change notification settings

ruven/iipanalyze

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

IIPAnalyze

IIPAnalyze is a tool for analyzing incoming IIP protocol image requests to the IIPImage server. It can tell you which are the most viewed regions of a particular image and display histograms showing tile usage, globally or per resolution level. It can also output hotspot image maps showing visually which regions of a particular image are most viewed for any given resolution. In addition, it can display histograms of the most viewed tiles or of connection frequency and time.

IIPAnalyze simply requires a web server log file from Apache, Lighttpd, Nginx, Tomcat or IIS in the widely used standard Common Log Format. It parses the contents of the log file and compiles a histogram of all requested tiles.

It is possible to filter by image name, resolution number, IP address and user agent. Basic output is an ordered list of tile indexes and their frequency to stdout. If a hotspot map is requested, a greyscale tile map is produced showing which regions are the most visited. The brighter the region, the more this region has been viewed. If a histogram is requested, a graph plotting tile index vs frequency is produced.

IIPAnalyze is a command line script written in Python and requires the Python Imaging Library in order to generate hotspot maps and (optionally) matplotlib if you want histogram plots.

Command Line Options

-l, –logfile: Web server log file in common log format

-i, –image: Full name of the image you want to search e.g. “/images/test.tif”

-r, –resolution: Index of the resolution (from 0 and the maximum available resolution of the image)

-a, –address: Filter by IP address

-u, --user: Filter by user agent

-o, –output: Hotspot image map (requires Python’s PIL to be installed)

-w, –width: Width of hotspot image map (must be used with –output option)

-b, –background: Apply background of image (contrast reduced) to the hotspot map (must be used with --output option)

-g, –gamma: Define a gamma to improve the visibility of low contrasted tiles (must be used with --output option)

-p, –plot: Plot a histogram (requires Python’s matplotlib to be installed)

-t, --time: Plot the histogram of connection activitity with respect to time

-n --bins: Select the number of bins for the time histogram

-d --range: Select an interval of time on the time histogram

For example, to generate an image, hits.jpg of width 600px with background showing the distribution of tile hits at resolution 5 for image test.tif from the Apache access log use the following command:

python iipanalyze -l /path/to/access.log -i test.tif -r 5 -b -o hits.jpg -w 600

Please refer to the project site http://iipimage.sourceforge.net for further details


(c) 2012 Ruven Pillay 

About

IIPAnalyze is a tool for analyzing incoming IIP protocol image requests and creating hotspot map images and histograms.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages