Compass and Bootstrap are not the same kind of thing. Compass is a stylesheet framework built on top of SASS.
So, what's SASS?
SASS is a "CSS preprocessor" like LESS. Both expand the CSS language providing more flexibility and making it really powerful.
Bootstrap
Bootstrap is a (let's say) "stylesheet scaffold" it has a grid (similar to that on [960.gs]), some scaffold styles and a couple of nice widgets. It has similarities to Blueprint because the latter also has a grid, scaffold styles, etc. The nice thing about Bootstrap is that it has a couple of nice widgets, like the Topmenu Navigation, modal dialogs, etc. (those require a little bit of JavaScript that depends on jQuery or Ender Ender support removed in v2) and is built on top of LESS. That's a big plus to Bootstrap over Blueprint. I'll stop mention 960.gs being that it's only a grid, not that much useful for me.
So what's all this stuff?
Bootstrap = Blueprint (grids, scaffold styles)
SASS = LESS (CSS preprocessors)
Compass != Bootstrap
Compass Framework
The only framework here from my point of view is Compass because it really suggests a frame to work, it comes with Blueprint for the grid and the-nice, it has a nice bundle of mixins already for you, for CSS3, typography, etc, etc. Want border radius? Right: .my-button { @include border-radius; } What? Gradient background? Ok: .my-button { @include linear-gradient(color-stops(white, black)); }. What? Want all this cross-browser? Yes, all this is cross-browser.
The Blueprint grid system is included as a plugin in Compass and, as @corroded said, there is a Bootstrap plugin for Compass as well as there is a 960.gs plugin for Compass.
Conclusion
I would say go and try many of them and see what works best for you.
I'm currently working with Compass with Blueprint. Compass is a great framework and Blueprint comes bundled with it (and it's the grid system I was using before Compass). I like these tools too much.
Update: I'm currently working on a project with Bootstrap and LESS and it works really nice! From my point of view, SASS is more powerful than LESS, but LESS has less.js, a script that parses your Less stylesheets on the go, on the browser, just edit and refresh. When you finish your development, compile to CSS. No compiler running on console. On the other hand, I miss Compass' powerful bundled mixins, I have to code everything now. The next thing I'll try is the Bootstrap plugin for Compass, seems like a very powerful combination!
Also, Live Reload, CodeKit, Scout and (for the console-lovers among us) Grunt make compiling on the fly possible for LESS, SASS/Compass (and more).
Update: Here is a side by side comparison of Sass and Less code.
Update: Excellent article about SASS vs. LESS comparison. Should check it out.