git404hub

what is rqshc-image-compressor fr?

eiryou/rqshc-image-compressor — explained in plain English

Analysis updated 2026-05-18

0Audience · researcherComplexity · 2/5LicenseSetup · easy

tl;dr

A Windows research tool that compresses images into a custom RQI format using a from-scratch C++ and assembly compression core, with a bundled viewer and a web demo.

vibe map

mindmap
  root((rqshc-image-compressor))
    What it does
      Custom RQI image format
      Local compression on Windows
      Bundled RQI viewer
    Tech stack
      C++
      x64 Assembly
      AVX2
      WebAssembly
    Use cases
      Compress PNG PPM BMP images
      Try web based demo
      Research compression tradeoffs
    Audience
      Compression researchers
      Windows power users

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

what do people make with this?

VIBE 1

Compress a PNG, PPM, or BMP image locally on Windows and compare size, quality, and speed.

VIBE 2

Try the compression algorithm quickly in a browser using the WebAssembly demo, with no upload.

VIBE 3

Open and inspect a compressed RQI file using the bundled RQI Viewer program.

VIBE 4

Study compression ratio, restored image quality, and processing speed tradeoffs for research.

what's the stack?

C++x64 AssemblyAVX2WebAssembly

how it stacks up fr

eiryou/rqshc-image-compressor00kaku/gallery-slider-block04amanrajj/netwatch
Stars00
LanguageJavaScriptRust
Last pushed2021-05-19
MaintenanceDormant
Setup difficultyeasyeasymoderate
Complexity2/52/53/5
Audienceresearchergeneralops devops

Figures from each repo's GitHub metadata at analysis time.

how do i run it?

Difficulty · easy time til it works · 5min

Windows only, 64-bit, and an AVX2 capable CPU is recommended for best performance.

Free for personal, educational, and research use, commercial use or building it into a product needs the author's separate permission.

in plain english

RQSHC V64I is a research and evaluation tool for Windows that compresses images using a custom format the author invented, called RQI. Rather than wrapping an existing compression library, the author built the core compression and decompression logic from scratch in native C++17, with some performance critical parts written in x64 assembly and using AVX2 processor optimizations. The goal was to have a real environment for studying the tradeoffs between how small a compressed file becomes, how close the restored image looks to the original, and how fast the whole process runs, rather than just calling someone else's codec. All processing happens on the user's own computer. Images are not sent to any external cloud service to be compressed. The project recently added a web based version built with WebAssembly so people can try compression quickly in a browser, and images still are not uploaded to a server in that version, though the web version runs a little slower and compresses slightly less than the native Windows program. Right now the tool accepts PNG, PPM, and Windows Bitmap files as input, formats like JPEG, WebP, GIF, and TIFF are not supported and need to be converted first. The output is the custom RQI format, which cannot be opened by normal image viewers, so the project bundles its own viewer program that can open RQI files, zoom and scroll around them, and export them back to PNG. A separate program handles the actual compression step. In benchmark tests included in the README, compressing a set of PNG images took roughly 65 to 630 milliseconds depending on the test run, shrank file size by around 33 to 35 percent on average, and kept a measured similarity score to the original very close to perfect. The author is upfront that results vary by image and are not guaranteed for every file, and that the compression core itself is currently closed source. Because the released program is not code signed, Windows may show an unrecognized publisher warning the first time it runs, which the author says is expected for a new unsigned tool rather than a sign of malware. Free use is allowed for personal, educational, and research purposes, but building the compression core into a commercial product, offering it as a paid service, or making a compatible product requires contacting the author for separate permission.

prompts (copy fr)

prompt 1
Help me understand how to use RQSHC_Observatory.exe to compress a folder of PNG images.
prompt 2
Explain what the SSIM quality score in the benchmark results actually measures.
prompt 3
Walk me through opening a .rqi file in RQI_Viewer.exe and exporting it back to PNG.
prompt 4
Help me understand why Windows SmartScreen is warning me about this unsigned executable.

Frequently asked questions

what is rqshc-image-compressor fr?

A Windows research tool that compresses images into a custom RQI format using a from-scratch C++ and assembly compression core, with a bundled viewer and a web demo.

What license does rqshc-image-compressor use?

Free for personal, educational, and research use, commercial use or building it into a product needs the author's separate permission.

How hard is rqshc-image-compressor to set up?

Setup difficulty is rated easy, with roughly 5min to a first successful run.

Who is rqshc-image-compressor for?

Mainly researcher.

peek the repo → explain another one

This repo across BitVibe Labs

double-check against the repo, no cap.