forked from tTh/FloatImg
+ incrustation & qsortrgb
This commit is contained in:
parent
da4ae7c82f
commit
1f7ea9c394
|
@ -14,6 +14,28 @@
|
||||||
#include "glitches.h"
|
#include "glitches.h"
|
||||||
#include "sfx.h"
|
#include "sfx.h"
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------- */
|
||||||
|
static int trier_les_pixels(FloatImg *pimg)
|
||||||
|
{
|
||||||
|
FloatImg copy;
|
||||||
|
int foo;
|
||||||
|
|
||||||
|
fimg_clone(pimg, ©, 1);
|
||||||
|
|
||||||
|
foo = fimg_qsort_rgb_b(pimg, ©, 0);
|
||||||
|
if (foo) {
|
||||||
|
fprintf(stderr, "%s: err qsort rgb = %d\n", __func__, foo);
|
||||||
|
return foo;
|
||||||
|
}
|
||||||
|
|
||||||
|
incrustation_0(pimg, ©, 0);
|
||||||
|
|
||||||
|
fimg_copy_data(©, pimg);
|
||||||
|
|
||||||
|
fimg_destroy(©);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
/* -------------------------------------------------------------- */
|
/* -------------------------------------------------------------- */
|
||||||
static int effect_3(FloatImg *image)
|
static int effect_3(FloatImg *image)
|
||||||
{
|
{
|
||||||
|
@ -227,7 +249,8 @@ switch (idFx) {
|
||||||
|
|
||||||
case CR_qsortrgb:
|
case CR_qsortrgb:
|
||||||
// fprintf(stderr, "!!! %d !!!\n", idFx);
|
// fprintf(stderr, "!!! %d !!!\n", idFx);
|
||||||
retval = fimg_qsort_rgb_b(image, image, 0);
|
// retval = fimg_qsort_rgb_b(image, image, 0);
|
||||||
|
retval = trier_les_pixels(image);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CR_message:
|
case CR_message:
|
||||||
|
|
|
@ -31,12 +31,17 @@ convert -delay 200 /tmp/fstack*.png foo.gif
|
||||||
essai_single ()
|
essai_single ()
|
||||||
{
|
{
|
||||||
MP4="/home/tth/Essais/FondageDePlomb/foo.mp4"
|
MP4="/home/tth/Essais/FondageDePlomb/foo.mp4"
|
||||||
|
INPUT="/home/tth/Essais/FondageDePlomb/capture/?[23]???.fimg"
|
||||||
|
FILTRE="classtrial:liss3x3"
|
||||||
|
|
||||||
|
echo '********* essai single *********'
|
||||||
|
|
||||||
echo '*** essai single ***'
|
|
||||||
|
|
||||||
rm /tmp/x8/*.png
|
rm /tmp/x8/*.png
|
||||||
|
|
||||||
time ./t -v -F rnd48b:water:liss2x2 -x
|
time ./t -v -g "$INPUT" -F $FILTRE -s
|
||||||
|
|
||||||
|
echo ; echo "encoding to " $MP4
|
||||||
|
|
||||||
ffmpeg -nostdin \
|
ffmpeg -nostdin \
|
||||||
-loglevel error \
|
-loglevel error \
|
||||||
|
@ -48,6 +53,6 @@ ffmpeg -nostdin \
|
||||||
# ------------------------------------------------------------
|
# ------------------------------------------------------------
|
||||||
# MAIN
|
# MAIN
|
||||||
|
|
||||||
essai_filtres
|
essai_single
|
||||||
|
|
||||||
# ------------------------------------------------------------
|
# ------------------------------------------------------------
|
||||||
|
|
|
@ -35,8 +35,8 @@ x4 = dst->width / 4, y4 = dst->height / 4;
|
||||||
|
|
||||||
for (y=0; y<y4; y++) {
|
for (y=0; y<y4; y++) {
|
||||||
for (x=0; x<x4; x++) {
|
for (x=0; x<x4; x++) {
|
||||||
fimg_get_rgb(src, x*4, y*4, rgb);
|
fimg_get_rgb(src, x*4, y*4, rgb);
|
||||||
fimg_put_rgb(dst, x+9, y+9, rgb);
|
fimg_put_rgb(dst, x+19, y+19, rgb);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -23,9 +23,10 @@
|
||||||
|
|
||||||
static int nextpng, counter;
|
static int nextpng, counter;
|
||||||
static char *destination;
|
static char *destination;
|
||||||
|
static int chainfilter;
|
||||||
|
|
||||||
/* -------------------------------------------------------------- */
|
/* -------------------------------------------------------------- */
|
||||||
int single_init(int next, char *dest, char *sfxchain)
|
int single_init(int next, char *dest, int fxchain)
|
||||||
{
|
{
|
||||||
int foo;
|
int foo;
|
||||||
struct stat stbuf;
|
struct stat stbuf;
|
||||||
|
@ -33,19 +34,19 @@ struct stat stbuf;
|
||||||
fprintf(stderr, ">>> %s ( %d '%s' )\n", __func__, next, dest);
|
fprintf(stderr, ">>> %s ( %d '%s' )\n", __func__, next, dest);
|
||||||
|
|
||||||
nextpng = next;
|
nextpng = next;
|
||||||
|
chainfilter = fxchain;
|
||||||
|
|
||||||
foo = stat(dest, &stbuf);
|
foo = stat(dest, &stbuf);
|
||||||
if (foo) {
|
if (foo) {
|
||||||
perror("stat dest dir");
|
perror("stat dest dir");
|
||||||
return -2;
|
return -2;
|
||||||
}
|
}
|
||||||
// fprintf(stderr, "\t%s type = %04x\n", dest, stbuf.st_mode & S_IFMT);
|
|
||||||
if (S_IFDIR != (stbuf.st_mode & S_IFMT)) {
|
if (S_IFDIR != (stbuf.st_mode & S_IFMT)) {
|
||||||
fprintf(stderr, "! %s must be a directory\n", dest);
|
fprintf(stderr, "! %s must be a directory\n", dest);
|
||||||
return -3;
|
return -3;
|
||||||
}
|
}
|
||||||
|
|
||||||
destination = dest;
|
destination = strdup(dest); /* have a static copy */
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -76,7 +77,7 @@ if (foo) {
|
||||||
return foo;
|
return foo;
|
||||||
}
|
}
|
||||||
|
|
||||||
nextpng++;
|
nextpng++; counter++;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -87,8 +88,12 @@ int single_print_state(char *title, int k)
|
||||||
fprintf(stderr, ">>> %s ( '%s' %d )\n", __func__, title, k);
|
fprintf(stderr, ">>> %s ( '%s' %d )\n", __func__, title, k);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
fprintf(stderr, "nextpng %d\n", nextpng);
|
fprintf(stderr, "%s : %s\n", __FILE__, title);
|
||||||
fprintf(stderr, "counter %d\n", counter);
|
fprintf(stderr, " nextpng %d\n", nextpng);
|
||||||
|
fprintf(stderr, " counter %d\n", counter);
|
||||||
|
fprintf(stderr, " chainfilter %d\n", chainfilter);
|
||||||
|
|
||||||
|
fprintf(stderr, " destination %s\n", destination);
|
||||||
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
/* -------------------------------------------------------------- */
|
/* -------------------------------------------------------------- */
|
||||||
|
|
||||||
int single_init(int next, char *dest, char *sfxchain);
|
int single_init(int next, char *dest, int fxchain);
|
||||||
int single_push_picture(FloatImg *pimg);
|
int single_push_picture(FloatImg *pimg);
|
||||||
|
|
||||||
int single_print_state(char *title, int k);
|
int single_print_state(char *title, int k);
|
||||||
|
|
72
Fonderie/t.c
72
Fonderie/t.c
|
@ -6,6 +6,7 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <glob.h>
|
||||||
|
|
||||||
#include "../floatimg.h"
|
#include "../floatimg.h"
|
||||||
#include "glitches.h"
|
#include "glitches.h"
|
||||||
|
@ -77,28 +78,48 @@ fprintf(stderr, "essayer single -> %d\n", foo);
|
||||||
*/
|
*/
|
||||||
int essayer_single(char *globpattern, char *destdir, int chain)
|
int essayer_single(char *globpattern, char *destdir, int chain)
|
||||||
{
|
{
|
||||||
FloatImg image;
|
FloatImg image = { 0 };
|
||||||
int idx, foo;
|
int idx, foo;
|
||||||
|
glob_t globbuf;
|
||||||
|
char *fname;
|
||||||
|
|
||||||
fprintf(stderr, ">>> %s ( '%s' '%s' %d )\n", __func__,
|
fprintf(stderr, ">>> %s ( '%s' '%s' %d )\n", __func__,
|
||||||
globpattern, destdir, chain);
|
globpattern, destdir, chain);
|
||||||
|
|
||||||
foo = fimg_create(&image, 640, 480, 3);
|
|
||||||
if (foo) {
|
|
||||||
fprintf(stderr, "erreur %d creation image\n", foo);
|
|
||||||
return foo;
|
|
||||||
}
|
|
||||||
fimg_vdeg_a(&image, (double)3.141592654);
|
|
||||||
|
|
||||||
foo = single_init(0, destdir, "none");
|
filterstack_list(chain, "essai du single");
|
||||||
|
|
||||||
|
foo = single_init(0, destdir, chain);
|
||||||
if (foo) {
|
if (foo) {
|
||||||
fprintf(stderr, "erreur %d single_init\n", foo);
|
fprintf(stderr, "erreur %d single_init\n", foo);
|
||||||
return foo;
|
return foo;
|
||||||
}
|
}
|
||||||
|
single_print_state("just after init", 0);
|
||||||
|
|
||||||
filterstack_list(chain, "essai du single");
|
memset(&globbuf, 0, sizeof(glob_t));
|
||||||
|
foo = glob(globpattern, 0, NULL, &globbuf);
|
||||||
|
fprintf(stderr, "globbing '%s' -> %d, %d files found\n",
|
||||||
|
globpattern, foo, (int)globbuf.gl_pathc);
|
||||||
|
if (0 == globbuf.gl_pathc) {
|
||||||
|
fprintf(stderr, "%s : no file found, aborting\n", __func__);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
for (idx=0; idx<666; idx++) {
|
for (idx=0; idx<globbuf.gl_pathc; idx++) {
|
||||||
|
|
||||||
|
fname = globbuf.gl_pathv[idx]; /* alias of filename */
|
||||||
|
fprintf(stderr, "%s %6d %s\r", __func__, idx, fname);
|
||||||
|
|
||||||
|
if (0==image.width && 0==image.height) {
|
||||||
|
foo = fimg_create_from_dump(fname, &image);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
foo = fimg_load_from_dump(fname, &image);
|
||||||
|
}
|
||||||
|
if (foo) {
|
||||||
|
fprintf(stderr, "get image -> %d\n", foo);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
foo = filterstack_run(chain, &image, 0);
|
foo = filterstack_run(chain, &image, 0);
|
||||||
if (foo) {
|
if (foo) {
|
||||||
|
@ -112,22 +133,29 @@ for (idx=0; idx<666; idx++) {
|
||||||
fprintf(stderr, "erreur %d push picture\n", foo);
|
fprintf(stderr, "erreur %d push picture\n", foo);
|
||||||
return foo;
|
return foo;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fprintf(stderr, "\n");
|
||||||
|
|
||||||
|
single_print_state("end of run", 0);
|
||||||
|
|
||||||
|
fimg_destroy(&image);
|
||||||
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
/* ----------------------------------------------------------- */
|
/* ----------------------------------------------------------- */
|
||||||
|
|
||||||
int help(void)
|
int help(void)
|
||||||
{
|
{
|
||||||
puts("yolo!");
|
puts("Yolo!");
|
||||||
|
|
||||||
puts("\t-F\tdefine:the:filter:chain");
|
puts("\t-F\tdefine:the:filter:chain");
|
||||||
puts("\t-L\tlist available filters");
|
puts("\t-g\tinput glob pattern");
|
||||||
puts("\t-i\tinfile.fimg");
|
puts("\t-i\tinfile.fimg");
|
||||||
|
puts("\t-L\tlist available filters");
|
||||||
puts("\t-o\tinfile.xxx");
|
puts("\t-o\tinfile.xxx");
|
||||||
|
puts("\t-O\t/output/directory");
|
||||||
|
puts("\t-s\tdo single test");
|
||||||
|
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
@ -158,26 +186,31 @@ exit(0); /* back to real world */
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
int foo;
|
int foo, opt;
|
||||||
int opt, do_xper = 0;
|
int do_xper = 0;
|
||||||
|
int do_single = 0;
|
||||||
char *filterchain = "0";
|
char *filterchain = "0";
|
||||||
char *infile = "mire.fimg";
|
char *infile = "mire.fimg";
|
||||||
char *outfile = PNG;
|
char *outfile = PNG;
|
||||||
char *outdir = "/tmp/x8/";
|
char *outdir = "/tmp/x8/";
|
||||||
|
char *globstr = "capture/????7.fimg";
|
||||||
|
|
||||||
fprintf(stderr, "*** %s : compiled by tTh, %s %s\n", __FILE__,
|
fprintf(stderr, "*** %s : compiled by tTh, %s %s\n", __FILE__,
|
||||||
__DATE__, __TIME__);
|
__DATE__, __TIME__);
|
||||||
fimg_print_version(2);
|
fimg_print_version(2);
|
||||||
|
|
||||||
while ((opt = getopt(argc, argv, "hF:i:Lo:vx")) != -1) {
|
while ((opt = getopt(argc, argv, "hF:g:i:Lo:O:svx")) != -1) {
|
||||||
switch(opt) {
|
switch(opt) {
|
||||||
case 'h': help(); break;
|
case 'h': help(); break;
|
||||||
case 'F': filterchain = optarg; break;
|
case 'F': filterchain = optarg; break;
|
||||||
|
case 'g': globstr = optarg; break;
|
||||||
case 'i': infile = optarg; break;
|
case 'i': infile = optarg; break;
|
||||||
case 'L':
|
case 'L':
|
||||||
list_crapulors("available filters");
|
list_crapulors("available filters");
|
||||||
exit(0);
|
exit(0);
|
||||||
case 'o': outfile = optarg; break;
|
case 'o': outfile = optarg; break;
|
||||||
|
case 'O': outdir = optarg; break;
|
||||||
|
case 's': do_single = 1; break;
|
||||||
case 'v': verbosity++; break;
|
case 'v': verbosity++; break;
|
||||||
case 'x': do_xper = 1; break;
|
case 'x': do_xper = 1; break;
|
||||||
default: exit(1);
|
default: exit(1);
|
||||||
|
@ -198,6 +231,11 @@ if (do_xper) {
|
||||||
experiment();
|
experiment();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
if (do_single) {
|
||||||
|
fprintf(stderr, "Globbing '%s'\n", globstr);
|
||||||
|
essayer_single(globstr, outdir, STK);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
foo = essai_filterstack(infile, outfile);
|
foo = essai_filterstack(infile, outfile);
|
||||||
if (foo) {
|
if (foo) {
|
||||||
|
|
Loading…
Reference in New Issue