All Projects → debruine → webmorph

debruine / webmorph

Licence: MIT license
Average and morph faces online http://webmorph.org/

Programming Languages

javascript
184084 projects - #8 most used programming language
PHP
23972 projects - #3 most used programming language
java
68154 projects - #9 most used programming language
CSS
56736 projects
HTML
75241 projects
hack
652 projects

Projects that are alternatives of or similar to webmorph

Excel Parser Processor
Simply does the tedious, repetitive operations for all rows of excel files step by step and reports after the job is done. It can download files from URL(s) in a column of Excel files. If a new filename is provided at column B it will rename the file before saving. It will even create sub folders if column C is full with a valid folder name.
Stars: ✭ 177 (+221.82%)
Mutual labels:  batch-processing
aws-batch-example
Example use of AWS batch
Stars: ✭ 96 (+74.55%)
Mutual labels:  batch-processing
treenet
Recursive Neural Networks for PyTorch
Stars: ✭ 29 (-47.27%)
Mutual labels:  batch-processing
Krita Batch Exporter
A Free Krita plugin to batch export layers and groups with maximum flexibility. Scale, trim, export multiple copies of your layers...
Stars: ✭ 201 (+265.45%)
Mutual labels:  batch-processing
flume
A blazing fast job processing system backed by GenStage & Redis.
Stars: ✭ 37 (-32.73%)
Mutual labels:  batch-processing
corb2
MarkLogic tool for processing and reporting on content, enhanced from the original CoRB
Stars: ✭ 18 (-67.27%)
Mutual labels:  batch-processing
Pssh
Parallel SSH Tools
Stars: ✭ 127 (+130.91%)
Mutual labels:  batch-processing
openrefine-batch
Shell script to run OpenRefine in batch mode (import, transform, export). It orchestrates OpenRefine (server) and a python client that communicates with the OpenRefine API.
Stars: ✭ 76 (+38.18%)
Mutual labels:  batch-processing
spring-batch-rest
REST API for Spring Batch using Spring Boot 2.2
Stars: ✭ 85 (+54.55%)
Mutual labels:  batch-processing
generic-batch-processor
”Building a concurrent and distributed system for batch processing which is fault tolerant and can scale up or scale out using Akka.NET (based on actor model)”.
Stars: ✭ 18 (-67.27%)
Mutual labels:  batch-processing
Batch Shipyard
Simplify HPC and Batch workloads on Azure
Stars: ✭ 240 (+336.36%)
Mutual labels:  batch-processing
sofgan
[TOG 2022] SofGAN: A Portrait Image Generator with Dynamic Styling
Stars: ✭ 715 (+1200%)
Mutual labels:  faces
goroutines
It is an efficient, flexible, and lightweight goroutine pool. It provides an easy way to deal with concurrent tasks with limited resource.
Stars: ✭ 88 (+60%)
Mutual labels:  batch-processing
Ida Batch decompile
*Decompile All the Things* - IDA Batch Decompile plugin and script for Hex-Ray's IDA Pro that adds the ability to batch decompile multiple files and their imports with additional annotations (xref, stack var size) to the pseudocode .c file
Stars: ✭ 198 (+260%)
Mutual labels:  batch-processing
ElasticBatch
Elasticsearch tool for easily collecting and batch inserting Python data and pandas DataFrames
Stars: ✭ 21 (-61.82%)
Mutual labels:  batch-processing
Bats
面向 OLTP、OLAP、批处理、流处理场景的大一统 SQL 引擎
Stars: ✭ 152 (+176.36%)
Mutual labels:  batch-processing
python-batch-runner
A tiny framework for building batch applications as a collection of tasks in a workflow.
Stars: ✭ 22 (-60%)
Mutual labels:  batch-processing
Azure-Certification-DP-200
Road to Azure Data Engineer Part-I: DP-200 - Implementing an Azure Data Solution
Stars: ✭ 54 (-1.82%)
Mutual labels:  batch-processing
proxima-platform
The Proxima platform.
Stars: ✭ 17 (-69.09%)
Mutual labels:  batch-processing
rack-cargo
🚚 Batch requests for Rack apps (works with Rails, Sinatra, etc)
Stars: ✭ 17 (-69.09%)
Mutual labels:  batch-processing
# WebMorph WebMorph is the online version of PsychoMorph, which was originally developed by Bernie Tiddeman. You can get the desktop version of PsychoMorph here http://users.aber.ac.uk/bpt/jpsychomorph/ WebMorph is developed by Lisa DeBruine at the Face Research Lab at the University of Glasgow. ## How to install WebMorph on a local server 1. Set up Apache/PHP/MySQL/Tomcat (instructions below for OS X) 1. Apache/PHP 1. Update the hosts file ```bash sudo sed -i '' '$a\ 127.0.0.1 webmorph.test' /etc/hosts ``` 2. Update the httpd-vhosts.conf file (edit email and /path/to/webmorph below) ```bash sudo sed -i '' '$a\ \ \ ServerAdmin [email protected]\ DocumentRoot "/path/to/webmorph"\ ServerName webmorph.test\ ErrorLog "/private/var/log/apache2/webmorph-error_log"\ CustomLog "/private/var/log/apache2/webmorph-access_log" common\ \ \ \ ProxyRequests On\ ProxyPreserveHost On\ ProxyStatus On\ ProxyPass /tomcat/ http://localhost:8080/\ ProxyPassReverse /tomcat/ http://localhost:8080/\ \ \ \ Require host localhost\ ' /etc/apache2/extra/httpd-vhosts.conf ``` 3. Make sure PHP is on. Open the httpd.conf file in your favourite editor (e.g., `sudo nano /etc/apache2/httpd.conf`) and remove preceding # from "#LoadModule php5_module libexec/apache2/libphp5.so". 4. Restart Apache ```bash sudo apachectl restart ``` 2. MySQL 1. Install Homebrew ```bash ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" ``` 2. Install MariaDB (version of MySQL) ```bash brew install mariadb ``` 3. Set Mysql root user (edit password) ```bash mysqladmin -u root password 'mysecretpassword' ``` 4. Create database (update /path/to/webmorph below) ```bash mysql -u root -p ``` ```sql CREATE DATABASE psychomorph; USE psychomorph; \. /path/to/webmorph/resources/mysql/db.sql \. /path/to/webmorph/resources/mysql/tems.sql ``` 3. Tomcat 1. Install Java JDK (1.8.x) ( http://www.oracle.com/technetwork/java/javase/downloads/ ) 2. Install Tomcat 7.0.x in /usr/local/ ( https://tomcat.apache.org/download-70.cgi ) 1. Link your tomcat folder to /usr/local/tomcat, make shell scripts executable, and start as _www user ```bash sudo ln -s /usr/local/apache-tomcat-7.0.54 /usr/local/tomcat sudo chmod +x /usr/local/tomcat/bin/*.sh sudo -u _www "/usr/local/tomcat/bin/startup.sh"' ``` 2. Make a secure images folder (change /secure/path below to something outside your DocumentRoot ```bash mkdir /secure/path/images sudo chown _www /secure/path/images sudo chmod 777 /secure/path/images ```
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].