├── .gitattributes ├── .gitignore ├── __init__.py ├── nodes ├── __init__.py ├── background_select.py ├── channel_select.py ├── config.py ├── face_swap.py ├── fal.py ├── fetch_surreal.py ├── florence.py ├── foreground_mask.py ├── layer_mask.py ├── mask_image.py ├── redis.py ├── redis_image.py ├── sam2_nodes.py ├── save_surreal.py ├── save_to_s3.py ├── separate_mask.py ├── stream.py └── surreal.py ├── pyproject.toml └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | config_.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/__init__.py -------------------------------------------------------------------------------- /nodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/__init__.py -------------------------------------------------------------------------------- /nodes/background_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/background_select.py -------------------------------------------------------------------------------- /nodes/channel_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/channel_select.py -------------------------------------------------------------------------------- /nodes/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/config.py -------------------------------------------------------------------------------- /nodes/face_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/face_swap.py -------------------------------------------------------------------------------- /nodes/fal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/fal.py -------------------------------------------------------------------------------- /nodes/fetch_surreal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/fetch_surreal.py -------------------------------------------------------------------------------- /nodes/florence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/florence.py -------------------------------------------------------------------------------- /nodes/foreground_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/foreground_mask.py -------------------------------------------------------------------------------- /nodes/layer_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/layer_mask.py -------------------------------------------------------------------------------- /nodes/mask_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/mask_image.py -------------------------------------------------------------------------------- /nodes/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/redis.py -------------------------------------------------------------------------------- /nodes/redis_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/redis_image.py -------------------------------------------------------------------------------- /nodes/sam2_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/sam2_nodes.py -------------------------------------------------------------------------------- /nodes/save_surreal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/save_surreal.py -------------------------------------------------------------------------------- /nodes/save_to_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/save_to_s3.py -------------------------------------------------------------------------------- /nodes/separate_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/separate_mask.py -------------------------------------------------------------------------------- /nodes/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/stream.py -------------------------------------------------------------------------------- /nodes/surreal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/nodes/surreal.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un-seen/comfyui-tensorops/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tqdm 2 | numpy 3 | surrealist 4 | boto3==1.34.86 5 | redis 6 | fal-client 7 | scipy 8 | replicate --------------------------------------------------------------------------------