Whitepaper V2 · Edition 2026-07-23

AI(COPY)RIGHTS License Marking System AI(COPY)RIGHTS ライセンスマーキングシステム

Intelligent Color-Adaptive Watermarking for AI-Generated Content AI生成コンテンツのための知的配色適応型ウォーターマーク

First published 2026-01-11 · Updated 2026-07-23 | AICU Inc.

Patent Granted
CERT.aicu.ai incorporates AICU's patented technologies — JP Patent No. 7,814,797 (granted); international applications (EU / US / CN) pending.
特許取得済み
★AICU が国内特許取得(特許第7814797号)・国際特許(EU/US/CN)出願中の技術が実装されています。

Abstract 概要

This whitepaper documents the technical verification of a license marking system designed for AI-generated content. The system adds visible license information to images while preserving content integrity through intelligent color adaptation.

We conducted proof-of-concept experiments using three years of content (created through AI and human collaboration) published on note.com by AICU Inc., including cover art for monthly magazine issues. This document focuses on the verification results for visibility and non-destructive background watermarking.

As of the 2026-07 edition, the system is extended with the (GC) Generative Commercial License, which attaches a per-generation royalty to reference-based AI generation and settles it to the rights holder. This moves the system from marking toward an operating creator-royalty mechanism, now in production on api.aicu.ai.

本ホワイトペーパーでは、AI生成コンテンツ向けに設計されたライセンスマーキングシステムの技術検証を記録しています。本システムは、知的配色適応により、コンテンツの完全性を保ちながら、画像に視認可能なライセンス情報を付与します。

実証実験として、AICU Inc.がnote.comで公開している3年分のコンテンツ(AIと人間の共同作業で生まれたもの)と、月刊マガジンのカバーアートを使用しました。本書では、視認性コンテンツを破壊しない背景ウォーターマークの検証結果を中心に記載しています。

2026-07 版では、(GC) 生成商用・原作者還元ライセンスを追加しました。リファレンス画像からのAI生成に生成ごとの報酬を紐づけ、原著作権者へ精算します。マーキングから一歩進み、実際に稼働する原作者還元の仕組みとして api.aicu.ai で実用化しています。

License Types ライセンスタイプ

The AI(COPY)RIGHTS system provides five distinct license marks based on the AiCuty Guidelines.

AI(COPY)RIGHTSシステムは、AiCutyガイドラインに基づく5種類のライセンスマークを提供します。

(A)

AI-Generated, Authorized for Community AI生成、コミュニティ利用許可

Non-commercial community use permitted. 非商用コミュニティ利用可。

(AA)

Authorized Aggregation 認定アグリゲーション

Content aggregation and monetization permitted. Details コンテンツ集約・収益化許可。詳細

(C)

Commercial License 商用ライセンス

Licensed for commercial use. 商用利用許諾済み。

(CG)

Copy and Re-ML Permitted コピー・再機械学習許可

May be used for training AI models. AIモデルのトレーニングに使用可。

(GC)

Generative Commercial License 生成商用・原作者還元ライセンス

Reference-based AI generation, commercially licensed, with a per-generation royalty paid to the rights holder. Verify at cert.aicu.ai/gc. リファレンス画像からの商用AI生成。生成ごとに原著作権者へ報酬を還元。cert.aicu.ai/gc で検証。

Edition History 版の変更履歴

Edition Date日付 Changes変更点
V1 2026-01-11 Initial edition. (A) / (AA) / (C) / (CG) license marks, color-adaptive non-destructive background watermark, proof-of-concept on three years of note.com content. 初版。(A) / (AA) / (C) / (CG) ライセンスマーク、配色適応型・非破壊の背景ウォーターマーク、note.com 3年分での実証。
V2 2026-07-23 Added the (GC) Generative Commercial License: reference-based AI generation with a per-generation royalty (40% of the gross margin after generation cost) paid to the rights holder. GC licenses are issued and settled per generation, and each can be verified at cert.aicu.ai/gc. (GC) 生成商用・原作者還元ライセンスを追加。リファレンス画像からの商用AI生成で、生成ごとに原著作権者へ報酬(生成原価控除後の粗利の40%)を還元。GC ライセンスは生成のたびに発行・精算され、各件を cert.aicu.ai/gc で検証できる。

URL Structure URL構造

Short URL (Share) 短縮URL(共有用)
cert.aicu.ai/{8hex}
Canonical URL (Rights) 正規URL(権利情報)
cert.aicu.ai/{owner}/{YYMMDD}.{seq}
Component要素 Description説明 Example
{8hex}Short ID (SHA-256)短縮ID (SHA-256)e0b29cb8
{owner}Rights holder ID権利者IDo_ob
{YYMMDD}Authorization date許可日260111
.{seq}Daily sequence日次連番.1

Color Algorithm 配色アルゴリズム

The intelligent color adaptation uses K-means clustering for dominant color extraction and triadic color scheme (-120° CCW rotation) for optimal text readability.

知的配色適応はK-meansクラスタリングで代表色を抽出し、トライアド配色(反時計回り120°回転)で最適なテキスト可読性を実現します。

Algorithm Steps アルゴリズムの手順

  1. Extract dominant color using K-means (k=5)
  2. K-means(k=5)で代表色を抽出
  3. Calculate triadic color (-120° on color wheel)
  4. トライアド色(色相環で-120°)を計算
  5. Check contrast ratio (minimum: 3.0)
  6. コントラスト比をチェック(最低: 3.0)
  7. If insufficient, adjust lightness iteratively
  8. 不足時は明度を反復調整
  9. Apply final colors to license bar
  10. 最終配色をライセンスバーに適用
# Triadic color (-120° CCW) def get_triadic_ccw(rgb): h, l, s = rgb_to_hls(rgb) h_new = (h - 1/3) % 1.0 # -120° return hls_to_rgb(h_new, adjusted_l, s) MIN_CONTRAST = 3.0 def get_optimal_text_color(bar_rgb): triadic = get_triadic_ccw(bar_rgb) if contrast(bar_rgb, triadic) >= MIN_CONTRAST: return triadic for l in [0.15, 0.85, 0.2, 0.8...]: if contrast(bar_rgb, adjust(triadic, l)) >= MIN_CONTRAST: return adjust(triadic, l)

Why Triadic (-120°)? なぜトライアド(-120°)か?

Scheme方式 Angle角度 Evaluation評価
Complementary180°High contrast but harsh高コントラストだが刺激的
Triadic CCW-120°Balanced, stable (Selected)バランス・安定(採用)
Triadic CW+120°Less appealing in testsテストで魅力低い
Split Comp.150°Lower contrastコントラスト低い

Verification Results 検証結果

The following samples demonstrate the watermarking system applied to actual cover art from note.com. Two modes: intelligent color adaptation and classic black/white.

以下のサンプルは、note.comの実際のカバーアートにウォーターマークを適用したものです。知的配色適応モードと黒白クラシックモードの2種類。

o_ob dominant
Dominant + Triadic
URLv.aicu.ai/e0b29cb8
Contrast7.25
Bar#eb97bd
Text#042347
o_ob bw
Black + White
URLv.aicu.ai/e0b29cb8
Contrast12.82
Bar#191919
Text#dcdcdc
aicu dominant
Dominant + Triadic (Auto-adjusted)
URLv.aicu.ai/1f5c3891
Contrast5.73
Bar#8baca8
Text#2e2c1e
aicu bw
Black + White
URLv.aicu.ai/1f5c3891
Contrast12.82
Bar#191919
Text#dcdcdc

Contrast Improvement コントラスト改善

Image画像 Before調整前 After調整後 WCAG
o_ob (dominant) 2.91 7.25 AAA
aicu (dominant) 1.26 5.73 AA
Both (B/W)両方(黒白) 12.82 AAA

Conclusion 結論

The AI(COPY)RIGHTS license marking system achieves:

  • High visibility - Minimum contrast 3.0 guaranteed
  • Content preservation - License bar added below, not overlaid
  • Visual harmony - Triadic scheme creates aesthetic results
  • Permanent identification - Two-layer URL for sharing & rights

Further patent-pending technologies will be implemented progressively.

AI(COPY)RIGHTSライセンスマーキングシステムは以下を達成しました:

  • 高い視認性 - 最低コントラスト3.0を保証
  • コンテンツ保全 - ライセンスバーは下部に追加、オーバーレイなし
  • 視覚的調和 - トライアド配色で美的に優れた結果
  • 永続的識別 - 共有と権利のための二層URL

特許出願中の技術は順次実装予定です。

References 参考文献