Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Trinary image compression
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
glen herrmannsfeldt  
View profile  
 More options Oct 22 2012, 3:22 pm
Newsgroups: comp.compression
From: glen herrmannsfeldt <g...@ugcs.caltech.edu>
Date: Mon, 22 Oct 2012 19:22:22 +0000 (UTC)
Local: Mon, Oct 22 2012 3:22 pm
Subject: Trinary image compression

I very much like the idea of JBIG and the compression of binary
(black, white, but no gray or other colors) images.

There are, however, some books, at least computer manuals,
written with two ink colors. (Black and blue for example.)

There is, as far as I know, no JTIG compression for trinary
(black, blue, white) images. (Presumably one could allow for
any three colors, likely one being white.)

More specifcally, there are many DEC manuals in bitsavers
that have lost some bits in scanning. If there was a format
to store them in, there might be more interest in doing it.

-- glen


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Willem  
View profile  
 More options Oct 22 2012, 4:53 pm
Newsgroups: comp.compression
From: Willem <wil...@turtle.stack.nl>
Date: Mon, 22 Oct 2012 20:53:14 +0000 (UTC)
Local: Mon, Oct 22 2012 4:53 pm
Subject: Re: Trinary image compression
glen herrmannsfeldt wrote:

) I very much like the idea of JBIG and the compression of binary
) (black, white, but no gray or other colors) images.
)
) There are, however, some books, at least computer manuals,
) written with two ink colors. (Black and blue for example.)
)
) There is, as far as I know, no JTIG compression for trinary
) (black, blue, white) images. (Presumably one could allow for
) any three colors, likely one being white.)
)
) More specifcally, there are many DEC manuals in bitsavers
) that have lost some bits in scanning. If there was a format
) to store them in, there might be more interest in doing it.

I think it would be easiest if you split the image in two,
one containing the black text and one containing the blue text.

SaSW, Willem
--
Disclaimer: I am in no way responsible for any of the statements
            made in the above text. For all I know I might be
            drugged or something..
            No I'm not paranoid. You all think I'm paranoid, don't you !
#EOT


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
glen herrmannsfeldt  
View profile  
 More options Oct 22 2012, 7:43 pm
Newsgroups: comp.compression
From: glen herrmannsfeldt <g...@ugcs.caltech.edu>
Date: Mon, 22 Oct 2012 23:43:31 +0000 (UTC)
Local: Mon, Oct 22 2012 7:43 pm
Subject: Re: Trinary image compression

Willem <wil...@turtle.stack.nl> wrote:

(snip, I wrote)

> ) I very much like the idea of JBIG and the compression of binary
> ) (black, white, but no gray or other colors) images.
> ) There are, however, some books, at least computer manuals,
> ) written with two ink colors. (Black and blue for example.)
> ) There is, as far as I know, no JTIG compression for trinary
> ) (black, blue, white) images. (Presumably one could allow for
> ) any three colors, likely one being white.)

(snip)

> I think it would be easiest if you split the image in two,
> one containing the black text and one containing the blue text.

Yes, that is fine. But there are no standard compression algorithms,
more specifically, no popular decompression algorithms, that do it.
(Considering some cases where the decompression algorithm is
specified separately from the many possible compression algorithms
that it supports.)

I suppose one could use LZW on two bit/pixel image files, but that
is likely not near as good as JBIG2 on the two separate images.

There may be use for four or five color, but no shading, in some
image systems.

The nice thing about JBIG2 is that it has been supported by PDF
for some years now.

-- glen


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Niels Fröhling  
View profile  
 More options Oct 22 2012, 10:41 pm
Newsgroups: comp.compression
From: Niels Fröhling <spamt...@adsignum.com>
Date: Mon, 22 Oct 2012 20:41:07 -0600
Local: Mon, Oct 22 2012 10:41 pm
Subject: Re: Trinary image compression

> Yes, that is fine. But there are no standard compression algorithms,
> more specifically, no popular decompression algorithms, that do it.

There are a lot of papers about palette-based compression. Most of the research
beats JBIG by a margin in it's own territory, b/w in the end is just a two-color
palette.
In your three color case, if you have no better inspiration, just code two
planes (a: is it color 0 or the others?, b: is it colour 1 or the others?, c: is
implicit).

Ciao
   Niels


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Thomas Richter  
View profile  
 More options Oct 23 2012, 2:39 am
Newsgroups: comp.compression
From: Thomas Richter <t...@math.tu-berlin.de>
Date: Tue, 23 Oct 2012 08:39:24 +0200
Local: Tues, Oct 23 2012 2:39 am
Subject: Re: Trinary image compression
On 22.10.2012 22:53, Willem wrote:

Just FYI, JBIG2 supports exactly that. We started an AMD on this at
around 2006 and it should be long complete by now. I do not remember
exactly how it performed.

So long,
        Thomas


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
glen herrmannsfeldt  
View profile  
 More options Oct 23 2012, 2:59 am
Newsgroups: comp.compression
From: glen herrmannsfeldt <g...@ugcs.caltech.edu>
Date: Tue, 23 Oct 2012 06:59:45 +0000 (UTC)
Local: Tues, Oct 23 2012 2:59 am
Subject: Re: Trinary image compression

Thomas Richter <t...@math.tu-berlin.de> wrote:

(snip, someone wrote)

>> I think it would be easiest if you split the image in two,
>> one containing the black text and one containing the blue text.
> Just FYI, JBIG2 supports exactly that. We started an AMD on this at
> around 2006 and it should be long complete by now. I do not remember
> exactly how it performed.

I will have to read through it again.

Then the problem is finding the right scanner to generate the scans.

-- glen


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »