There is no option for that.
But the code to do it should be really easy.
Create a custom field of the table "category" called "comparison" with the values "yes" and "no" via the menu Display>Custom fields and then edit the file "listing" of the view "product" for your frontend template via the menu Display>Views and add such line at the beginning:
<?php if(@$this->element->comparison=='no') $this->params->set('show_compare',0); ?>
Then in each category you'll have that comparison option that you can turn off to deactivate the comparison feature for that category.