DumpPixelValues

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
(Archived Downloads: fix link)
 
(5 intermediate revisions by one user not shown)
Line 1: Line 1:
{{FilterCat|Plugins|External_filters|Debug_filters|Debug_filters}}
+
{{FilterCat|Plugins|External_filters|Debugging/Diagnostic_filters}}
 
+
{{Filter3
{{Filter
+
|[http://www.theneitherworld.com/mcpoodle/ McPoodle]
|McPoodle
+
 
|v.1.0
 
|v.1.0
|[http://www.geocities.com/McPoodle43/Tools/DumpPixelValues.zip]
+
|[http://www.theneitherworld.com/mcpoodle/Tools/DumpPixelValues.zip DumpPixelValues.zip]
 
|Debug filter
 
|Debug filter
 +
|[http://www.gnu.org/licenses/gpl-2.0.txt GPLv2]
 
|
 
|
* [[RGB32]]
 
* [[YUY2]]
 
|GPL
 
 
}}
 
}}
{{Template:FuncDef|DumpPixelValues(clip, string colorList, string coordinateList[, string filename]) }}
 
 
== Abstract ==
 
 
This DLL allows you to sample the colors from selected pixels for every frame in a video source and output the data to a text or binary file.
 
 
== Notes ==
 
 
ColorList is one or more of the letters R, G, B, A (for the Alpha channel), Y, U or V. RGB colors cannot be mixed with YUV colors. Video must be in RGB32 format if you want RGBA colors, or in YUY2 format if you want YUV colors.
 
 
CoordinateList is a comma-separated set of (x,y) coordinates, with no spaces.
 
  
The optional parameter filename is assumed to be "C:\\DumpPixelValues.log" if it is not supplied. You must use two backslash characters for each backslash in the full path. The file will not be deleted if it already exists, instead appending the data onto the end of the existing file. NOTE: To use the special binary output mode, filename must end with the extension .bin (see [http://www.geocities.com/mcpoodle43/Tools/DumpPixelValues.html here] for details).
+
== Description ==
 +
This plugin allows you to sample the colors from selected pixels for every frame in a video source and output the data to a text or binary file. See [http://www.theneitherworld.com/mcpoodle/Tools/DumpPixelValues.html homepage] for more information.
 +
<br>
 +
<br>
 +
== Requirements ==
 +
* AviSynth 2.5.8 or [http://sourceforge.net/projects/avisynth2/ greater]
 +
* Supported color formats: [[RGB32]], [[YUY2]]
  
 +
* <tt>msvcp71.dll</tt> and <tt>msvcr71.dll</tt> runtime components from the very ancient Microsoft Visual C++ .NET 2003.
 +
<br>
  
== Links ==
+
== [[Script variables|Syntax and Parameters]] ==
 +
:{{Template:FuncDef|DumpPixelValues (clip, string, string, string "filename") }}
 +
<br>
 +
::{{Par2| |clip| }}
 +
:::Input clip.
 +
<br>
 +
::{{Par2| |string| }}
 +
:::ColorList is one or more of the letters R, G, B, A (for the Alpha channel), Y, U or V. [[RGB]] colors cannot be mixed with [[YUV]] colors. Video must be in [[RGB32]] format if you want RGBA colors, or in [[YUY2]] format if you want [[YUV]] colors.
 +
<br>
 +
::{{Par2| |string| }}
 +
:::CoordinateList is a comma-separated set of (x,y) coordinates, with no spaces.
 +
<br>
 +
::{{Par2|filename|string| }}
 +
:::The optional parameter filename is assumed to be "C:\\DumpPixelValues.log" if it is not supplied. You must use two backslash characters for each backslash in the full path. The file will not be deleted if it already exists, instead appending the data onto the end of the existing file. NOTE: To use the special binary output mode, filename must end with the extension .bin (see [http://www.theneitherworld.com/mcpoodle/Tools/DumpPixelValues.html here] for details).
 +
<br>
 +
::*'''Note:''' the first 3 parameters are unnamed and do not have a default so they must be specified.
 +
<br>
 +
== Examples ==
 +
'''TO DO''' - for now see examples here: [http://www.theneitherworld.com/mcpoodle/Tools/DumpPixelValues.html DumpPixelValues.html]
 +
<br>
 +
<br>
 +
== Changelog ==
 +
Version      Date            Changes<br>
 +
v1.0        02/23/2004      - initial release
 +
<br>
 +
== Archived Downloads ==
 +
{| class="wikitable" border="1"; width="600px"
 +
|-
 +
!!width="100px"| Version
 +
!!width="150px"| Download
 +
!!width="150px"| Mirror
 +
|-
 +
!v1.0
 +
|[http://www.theneitherworld.com/mcpoodle/Tools/DumpPixelValues.zip DumpPixelValues.zip]
 +
|[http://web.archive.org/web/20150326172622/http://www.theneitherworld.com/mcpoodle/Tools/DumpPixelValues.zip DumpPixelValues.zip]
 +
|}
 +
<br>
  
Download the latest stable version: http://www.geocities.com/McPoodle43/Tools/DumpPixelValues.zip
+
==External Links ==
 +
*Offical homepage: [http://www.theneitherworld.com/mcpoodle/Tools/DumpPixelValues.html DumpPixelValues.html] | [http://web.archive.org/web/20140716225317/http://www.theneitherworld.com/mcpoodle/Tools/DumpPixelValues.html mirror]
 +
<br>
 +
<br>
 +
-----------------------------------------------
 +
'''Back to [[External_filters#Debugging.2FDiagnostic_Filters|External Filters]] &larr;'''

Latest revision as of 14:23, 7 July 2015

Abstract
Author McPoodle
Version v.1.0
Download DumpPixelValues.zip
Category Debug filter
License GPLv2
Discussion

Contents

[edit] Description

This plugin allows you to sample the colors from selected pixels for every frame in a video source and output the data to a text or binary file. See homepage for more information.

[edit] Requirements

  • msvcp71.dll and msvcr71.dll runtime components from the very ancient Microsoft Visual C++ .NET 2003.


[edit] Syntax and Parameters

DumpPixelValues (clip, string, string, string "filename")


clip   =
Input clip.


string   =
ColorList is one or more of the letters R, G, B, A (for the Alpha channel), Y, U or V. RGB colors cannot be mixed with YUV colors. Video must be in RGB32 format if you want RGBA colors, or in YUY2 format if you want YUV colors.


string   =
CoordinateList is a comma-separated set of (x,y) coordinates, with no spaces.


string  filename =
The optional parameter filename is assumed to be "C:\\DumpPixelValues.log" if it is not supplied. You must use two backslash characters for each backslash in the full path. The file will not be deleted if it already exists, instead appending the data onto the end of the existing file. NOTE: To use the special binary output mode, filename must end with the extension .bin (see here for details).


  • Note: the first 3 parameters are unnamed and do not have a default so they must be specified.


[edit] Examples

TO DO - for now see examples here: DumpPixelValues.html

[edit] Changelog

Version      Date            Changes
v1.0 02/23/2004 - initial release


[edit] Archived Downloads

Version Download Mirror
v1.0 DumpPixelValues.zip DumpPixelValues.zip


[edit] External Links




Back to External Filters

Personal tools